-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.35 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.35 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
{
"name": "eq-rts-map",
"version": "1.0.0-rc.2",
"description": "EQ RTS Map",
"author": "ExpTech Studio <ExpTech.tw@gmail.com>",
"type": "module",
"main": "build/main.cjs",
"private": true,
"license": "AGPL-3.0",
"scripts": {
"dev": "concurrently \"next dev\" \"npm run build:electron:dev\" \"wait-on http://localhost:3000 build/main.cjs && electronmon --inspect=5858 .\"",
"build:electron:dev": "cross-env NODE_ENV=development webpack --config .erb/configs/webpack.config.main.dev.cjs --watch",
"build:electron:prod": "cross-env NODE_ENV=production webpack --config .erb/configs/webpack.config.main.prod.cjs",
"electron": "electron .",
"package": "npm run build:electron:prod && next build && electron-builder build",
"package:win": "npm run build:electron:prod && next build && electron-builder build --win",
"package:mac": "npm run build:electron:prod && next build && electron-builder build --mac",
"package:linux": "npm run build:electron:prod && next build && electron-builder build --linux"
},
"dependencies": {
"@electron/remote": "^2.1.3",
"electron-serve": "^3.0.0",
"electron-updater": "^6.6.2",
"webfft": "^1.0.3"
},
"devDependencies": {
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/postcss": "^4.1.14",
"@types/bun": "latest",
"@types/node": "^24.8.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@types/webpack-node-externals": "^3.0.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.2.1",
"critters": "^0.0.25",
"cross-env": "^10.1.0",
"electron": "^38.3.0",
"electron-builder": "^26.0.12",
"electronmon": "^2.0.3",
"lucide-react": "^0.546.0",
"maplibre-gl": "^5.9.0",
"next": "15.5.7",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-map-gl": "^8.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.14",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.9.3",
"wait-on": "^9.0.1",
"webpack": "^5.102.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}