forked from fishpondstudio/CivIdle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.21 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.21 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
{
"name": "CivIdle",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
"scripts": {
"dev": "vite",
"watch": "tsc --build --incremental --watch tsconfig.watch.json",
"watchgo": "tsgo --build --incremental --watch tsconfig.watch.json",
"compile": "tsc --build --force tsconfig.json",
"build": "pnpm run compile && vite build",
"server": "cd server && npm run start",
"electron": "cd electron && npm run start",
"optimize": "node ./build/OptimizeImage.mjs",
"preview": "vite preview",
"font": "node ./build/GenerateBitmapFont.js",
"release": "node ./build/ReleaseElectron.js",
"translate": "node ./build/Translate.js",
"achievement": "node ./build/Achievement.js",
"releaseAndroid": "pnpm run build && pnpm run optimize && npx cap sync android && cd ./android && gradlew :app:bundleRelease",
"releaseIOS": "pnpm run build && pnpm run optimize && npx cap sync ios",
"ci": "biome ci ./src/scripts/ ./shared/ ./server/ --diagnostic-level=error --config-path=./"
},
"dependencies": {
"@capacitor/android": "^6.2.1",
"@capacitor/app": "^6.0.2",
"@capacitor/core": "^6.2.1",
"@capacitor/ios": "^6.2.1",
"@capacitor/preferences": "^6.0.3",
"@capawesome/capacitor-live-update": "^6.8.0",
"@dagrejs/dagre": "^2.0.4",
"@floating-ui/react": "^0.27.16",
"@msgpack/msgpack": "^3.0.0-beta2",
"@pixi/filter-outline": "^5.2.0",
"@pixi/graphics-smooth": "^1.1.0",
"@pixi/sound": "^5.2.0",
"@sentry/browser": "^8.47.0",
"@tippyjs/react": "^4.2.6",
"@xyflow/react": "^12.10.1",
"classnames": "^2.3.1",
"cordova-plugin-purchase": "^13.12.1",
"fflate": "^0.8.2",
"gameanalytics": "file:./packages/gameanalytics",
"html-to-image": "1.11.11",
"install": "^0.13.0",
"npm": "^10.9.0",
"pixi.js": "7.4.2",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.15.1",
"react-virtuoso": "^4.7.11",
"svg-pathdata": "^8.0.0",
"tippy.js": "^6.3.7",
"uplot": "^1.6.30",
"xp.css": "^0.3.0"
},
"devDependencies": {
"7zip-bin": "^5.2.0",
"@biomejs/biome": "1.9.4",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.2.1",
"@types/d3-geo": "^3.1.0",
"@types/gaze": "^1.1.2",
"@types/node": "20.19.33",
"@types/pako": "^2.0.3",
"@types/randomcolor": "^0.5.9",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.8",
"@types/react-modal": "^3.13.1",
"@types/topojson-client": "^3.1.5",
"@types/uuid": "^9.0.0",
"@typescript/native-preview": "7.0.0-dev.20260213.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"fs-extra": "^11.1.0",
"gaze": "^1.1.3",
"glob": "^8.0.3",
"madge": "^6.1.0",
"node-7z": "^3.0.0",
"rimraf": "^5.0.7",
"sharp": "^0.34.4",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vite-plugin-spritesmith": "github:fishpondstudio/vite-plugin-spritesmith"
}
}