-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "lunarphase-js",
"version": "2.0.3",
"description": "Calculate phase of the moon using Julian date",
"author": "Jason Sturges <[email protected]> (https://jasonsturges.com)",
"homepage": "https://jasonsturges.github.io/lunarphase-js/",
"repository": "github:jasonsturges/lunarphase-js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"scope": "jasonsturges"
},
"license": "ISC",
"keywords": [
"astronomy",
"moon",
"lunar",
"phase",
"julian"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc && vite build --watch",
"start": "vite --host --open",
"build": "tsc && vite build",
"build:demo": "tsc && vite build --config vite.demo.config.ts",
"lint:scripts": "eslint . --ext .ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"dts-bundle-generator": "^9.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3"
}
}