-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 KB
/
package.json
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
{
"name": "fsgs",
"version": "0.1.0",
"description": "FSGS the Multi-platform Adventure Game Engine",
"main": "build/main.js",
"build": {
"productName": "fsgs",
"appId": "com.famoce-succellion.fsgs",
"files": [
"./build/**/*"
],
"mac": {
"icon": "./icon.icns",
"category": "public.app-category.games"
},
"win": {
"icon": "./icon.ico"
},
"linux": {
"icon": "./icon.png",
"category": "Game"
}
},
"scripts": {
"start": "run-s clean build data serve",
"dev": "run-p dev:*",
"dev:clean": "rimraf build",
"dev:tsc": "tsc -w -p tsconfig.dev.json",
"dev:data": "run-s data",
"dev:webpack": "cross-env NODE_ENV=\"development\" webpack --progress",
"dev:electron": "wait-on ./build/main.js && cross-env NODE_ENV=\"development\" electron .",
"build-prod": "cross-env NODE_ENV=\"production\" webpack --progress",
"build:win": "run-s build-prod data _build:win",
"build:linux": "run-s build-prod data _build:linux",
"_build:win": "electron-builder --win --x64",
"_build:linux": "electron-builder --linux --x64",
"data": "cpx \"data/**/*.*\" build/data/"
},
"author": "Yoshio Miyamae <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/sass": "^1.45.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"rimraf": "^5.0.7",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"wait-on": "^7.2.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"yarn-run-all": "^3.1.1"
},
"dependencies": {
"file-type": "^19.0.0",
"log4js": "^6.9.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}