-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1.49 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
{
"private": true,
"packageManager": "pnpm@10.33.2",
"scripts": {
"build": "pnpm run build:engine && pnpm run build:play-jsx && pnpm run build:play-static",
"build:engine": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.engine.js",
"build:play-jsx": "babel --presets @babel/preset-react site/play/app.jsx -o site/play/app.js",
"build:play-static": "mkdir -p site/play/questplay && cp space-rangers-quest/built-web/questplay/* site/play/questplay/",
"build:play-assets": "mkdir -p site/play/quests && for q in Banket_eng Badday_eng Pizza_eng Borzukhan_eng Ski_eng Election_eng Robots_eng Leonardo_eng Depth_eng Edelweiss_eng Ministry_eng Foncers_eng Driver_eng Codebox_eng Pilot_eng Disk_eng Sortirovka1_eng Shashki_eng Player_eng; do gzip -c quests/sr_2_1_2121_eng/$q.qm > site/play/quests/$q.qm.gz; done && for q in Banket Borzukhan Ski Election Robots Depth Ministry Foncers Driver Pilot Shashki Pizza Player; do gzip -c quests/sr_2_dominators_ru/$q.qmm > site/play/quests/${q}_ru.qm.gz; done && for q in Badday Leonardo Edelweiss Codebox Sortirovka1; do gzip -c quests/sr_2_reboot_ru/$q.qmm > site/play/quests/${q}_ru.qm.gz; done"
},
"dependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@types/node": "^22.13.5",
"buffer": "^6.0.3",
"ts-loader": "^9.5.7",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
}
}