-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@nsat/jspredict",
"version": "2.2.0",
"description": "Javascript port of predict open-source satellite tracking library",
"type": "module",
"module": "./dist/jspredict.js",
"types": "./dist/jspredict.d.ts",
"files": [
"dist/jspredict.js",
"dist/jspredict.d.ts"
],
"exports": {
".": {
"types": "./dist/jspredict.d.ts",
"import": "./dist/jspredict.js"
}
},
"scripts": {
"dev": "vite --mode demo",
"preview": "vite preview --mode demo",
"benchmark": "npx tsx scripts/benchmark.ts",
"build:lib": "vite build",
"build:demo": "vite build --mode demo",
"build": "npm run build:lib && npm run build:demo",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/nsat/jspredict"
},
"keywords": [
"satellite",
"orbit",
"tle",
"qth",
"predict",
"space",
"sgp4",
"norad",
"geostationary",
"leo",
"azimuth",
"elevation",
"spacecraft",
"spire"
],
"author": "Spire",
"license": "MIT",
"bugs": {
"url": "https://github.com/nsat/jspredict/issues"
},
"homepage": "https://github.com/nsat/jspredict",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"luxon": "^3.7.2",
"satellite.js": "^7.1.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.12",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-tabs": "^1.1.21",
"@tailwindcss/vite": "^4.3.3",
"@types/luxon": "^3.7.4",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"eslint": "^10.8.0",
"lucide-react": "^1.32.0",
"react": "^19.2.8",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.8",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^8.2.1",
"vite-plugin-dts": "^5.0.3",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.10"
},
"allowScripts": {
"esbuild@0.28.2": true,
"fsevents@2.3.3": true
}
}