-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.02 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.02 KB
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
{
"name": "aa-js",
"version": "4.2.4",
"description": "Astronomical Algorithms in Javascript",
"files": [
"dist"
],
"sideEffects": false,
"type": "module",
"main": "./dist/aa-js.umd.cjs",
"module": "./dist/aa-js.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"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",
"prepublish": "npm run build",
"docs:build": "rimraf docs && typedoc && npm run generate-sidebar && vitepress build",
"docs:preview": "vitepress preview",
"docs:dev": "concurrently \"npm run typedoc:watch\" \"vitepress dev\"",
"predocs": "typedoc",
"typedoc": "typedoc",
"typedoc:watch": "chokidar 'src/**/*.ts' -c 'typedoc' --await-write-finish=200",
"generate-sidebar": "node scripts/generate-sidebar.js"
},
"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",
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"eslint": "^10.0.0",
"rimraf": "^6.1.3",
"typedoc": "^0.28.17",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.10.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitepress": "^1.6.4",
"vitest": "^4.0.18"
},
"ts-node": {
"esm": true
}
}