-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.55 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.55 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "apollo-map-studio",
"version": "1.0.0",
"description": "Desktop and web editor for Apollo HD map data.",
"license": "CC-BY-NC-4.0",
"author": "Apollo Map Studio",
"type": "module",
"main": "dist-electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "pnpm build:web && pnpm build:docs:desktop",
"build:web": "vite build",
"build:docs:desktop": "cross-env VITEPRESS_DESKTOP=true VITEPRESS_BASE=/docs/ VITEPRESS_CLEAN_URLS=false vitepress build docs --outDir dist/docs",
"clean:electron": "node scripts/clean-electron-build.mjs",
"license:sync-public-key": "node scripts/sync-license-public-key.mjs",
"build:electron": "pnpm license:sync-public-key && pnpm clean:electron && tsc -p tsconfig.electron.json",
"build:electron:hardened": "pnpm build:electron && node scripts/harden-electron-build.mjs",
"verify:electron-hardening": "node scripts/verify-electron-hardening.mjs",
"build:desktop": "pnpm build && pnpm build:electron:hardened && pnpm verify:electron-hardening",
"preview": "vite preview",
"electron:dev": "concurrently -k -n vite,electron -c cyan,magenta \"vite --host 127.0.0.1\" \"wait-on tcp:127.0.0.1:5173 && pnpm build:electron && cross-env ELECTRON_RENDERER_URL=http://127.0.0.1:5173 electron .\"",
"electron:start": "pnpm build:desktop && electron .",
"package": "pnpm build:desktop && cross-env NODE_OPTIONS=--no-deprecation electron-builder --dir --publish never",
"package:linux": "pnpm build:desktop && cross-env NODE_OPTIONS=--no-deprecation electron-builder --linux --x64 --publish never",
"package:mac": "pnpm build:desktop && cross-env NODE_OPTIONS=--no-deprecation electron-builder --mac --x64 --arm64 --publish never",
"package:win": "pnpm build:desktop && cross-env NODE_OPTIONS=--no-deprecation electron-builder --win --x64 --publish never",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest run",
"bench": "vitest bench --run --maxWorkers=1",
"bench:fast": "vitest bench --run --maxWorkers=100%",
"typecheck": "tsc --noEmit && tsc -p tsconfig.electron.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@xstate/react": "^6.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dockview": "^6.0.0",
"dockview-react": "^6.0.0",
"immer": "^11.1.6",
"maplibre-gl": "^5.24.0",
"nanoid": "^5.1.11",
"polygon-clipping": "^0.15.7",
"proj4": "^2.20.8",
"protobufjs": "^8.0.3",
"rbush": "^4.0.1",
"react": "^19.2.5",
"react-arborist": "^3.5.0",
"react-dom": "^19.2.5",
"react-hook-form": "^7.75.0",
"react-icons": "^5.6.0",
"tailwind-merge": "^3.5.0",
"xstate": "^5.31.0",
"zod": "^4.4.3",
"zundo": "^2.3.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nolebase/vitepress-plugin-git-changelog": "^2.18.2",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.0",
"@types/rbush": "^4.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.5",
"access-guard": "^0.2.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^41.5.0",
"electron-builder": "^26.8.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-mathjax3": "^4.3.2",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"mermaid": "^11.14.0",
"prettier": "^3.8.3",
"shadcn": "^4.6.0",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.10",
"vitepress": "^1.6.4",
"vitest": "^4.1.5",
"vue": "3.5.33",
"wait-on": "^9.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"electron-winstaller"
]
}
}