-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "aa-js",
"version": "4.0.1",
"description": "Astronomical Algorithms in Javascript",
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"dist/**/*.d.ts"
],
"type": "module",
"main": "./dist/aa-js.umd.cjs",
"module": "./dist/aa-js.js",
"exports": {
".": {
"import": "./dist/aa-js.js",
"require": "./dist/aa-js.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && rimraf types && vite build",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"tdocs": "rimraf docs && typedoc --categorizeByGroup --entryPointStrategy expand --out docs src/index.ts",
"bdocs": "rimraf docs && jsdoc src -c jsdoc.json -t ./node_modules/better-docs -d docs --readme README.md",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onekiloparsec/aa-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"astronomy",
"algorithms"
],
"author": "Cédric Foellmi",
"license": "MIT",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/onekiloparsec"
},
"bugs": {
"url": "https://github.com/onekiloparsec/aa-js/issues"
},
"homepage": "https://github.com/onekiloparsec/aa-js#readme",
"dependencies": {
"dayjs": "^1.11.6"
},
"devDependencies": {
"@types/eslint": "^8.44.7",
"@vitest/coverage-v8": "^0.34.2",
"@vue/compiler-dom": "^3.3.8",
"benny": "^3.7.1",
"better-docs": "^2.7.2",
"caniuse-lite": "^1.0.30001549",
"eslint": "^8.51.0",
"jsdoc": "^4.0.2",
"rimraf": "^5.0.5",
"source-map-loader": "^4.0.1",
"taffydb": "^2.7.3",
"ts-loader": "^9.5.0",
"typedoc": "^0.25.2",
"typescript": "^5.2.2",
"vite": "^5.1.7",
"vite-plugin-dts": "^3.8.3",
"vitest": "^0.34.6"
},
"ts-node": {
"esm": true
}
}