-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.73 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
76
77
78
79
80
{
"name": "openunits",
"version": "0.2.0",
"description": "A TypeScript orbital mechanics engine for scientific computing. Unit-safe APIs for orbital propagation, trajectory planning, and mission analysis.",
"author": "DeepcometAI",
"license": "GPL-3.0",
"type": "module",
"bin": {
"openunits": "./bin/openunits.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vue": {
"types": "./dist/vue.d.ts",
"import": "./dist/vue.js",
"require": "./dist/vue.cjs"
},
"./cli": {
"import": "./dist/cli.js"
}
},
"files": [
"dist",
"bin"
],
"keywords": [
"orbital-mechanics",
"astrodynamics",
"keplerian",
"propagation",
"space",
"astronomy",
"scientific",
"cli",
"vue",
"typescript"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"mathjs": "^12.2.1"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"devDependencies": {
"@vitejs/plugin-vue-jsx": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.1",
"vue": "^3.4.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeepcometAI/openunits.git"
},
"bugs": {
"url": "https://github.com/DeepcometAI/openunits/issues"
},
"homepage": "https://github.com/DeepcometAI/openunits#readme"
}