-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.96 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
{
"name": "astronomer",
"version": "2.0.0",
"description": "A desktop astronomy app for exploring space data and planning observations",
"main": "dist/main/main.js",
"author": "Astronomer Team",
"license": "MIT",
"private": true,
"scripts": {
"dev": "node scripts/dev-simple.mjs",
"dev:vite": "node scripts/dev.mjs",
"build": "tsc && vite build",
"prebuild:web": "node src/web/prepare.mjs",
"build:web": "vite build --config vite.config.web.mjs",
"preview:web": "vite preview --config vite.config.web.mjs",
"test": "vitest",
"test:e2e": "playwright test",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"pack:mac": "npm run build && electron-builder --mac",
"pack:win": "npm run build && electron-builder --win",
"pack:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"astronomy-engine": "^2.1.19",
"electron-store": "^8.2.0",
"leaflet": "^1.9.4",
"satellite.js": "^6.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.59.1",
"@types/node": "^20.19.39",
"electron": "^41.2.1",
"electron-builder": "^26.8.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^6.4.2",
"vitest": "^4.1.4"
},
"build": {
"appId": "me.davidcanhelp.astronomer",
"productName": "Astronomer",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"!node_modules/**/*"
],
"mac": {
"category": "public.app-category.education",
"icon": "assets/icon.icns"
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png",
"category": "Education"
}
},
"engines": {
"node": ">=18.0.0"
}
}