-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.81 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.81 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
{
"name": "galosity",
"version": "1.0.0",
"main": "./js/main/main.js",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"build": "cross-env NODE_ENV=production electron-builder",
"grammar": "npx peggy -c ./peggy.config.js",
"tsc-main": "tsc",
"tsc-analyse": "tsc -p ./plugins/analyse/tsconfig.json",
"tsc": "npm run tsc-main && npm run tsc-analyse"
},
"keywords": [],
"author": "ZZ_404",
"license": "MIT",
"description": "Lite Hypertext Galgame Script Editor & Engine",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@eslint/json": "^0.14.0",
"@types/crypto-js": "^4.2.2",
"@types/mime-types": "^3.0.1",
"@types/node": "^24.0.10",
"cross-env": "^7.0.3",
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"eslint": "^9.30.1",
"eslint-plugin-no-floating-promise": "^2.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.3.0",
"peggy": "^5.0.6",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"dependencies": {
"crypto-js": "^4.2.0",
"mime-types": "^3.0.2"
},
"build": {
"appId": "galosity.zz_404",
"productName": "Galosity",
"directories": {
"output": "build"
},
"files": [
"**/*",
"!tutorial",
"!gal.txt",
"!README.md",
"!LICENSE.txt",
"!eslint.config.js",
"!save",
"!import-test.txt",
"!ts",
"!exports.txt",
"!scripts",
"!plugins",
"!merge.ps1",
"!src",
"!dts",
"!web-files",
"!launch.bat"
],
"extraFiles": [
"tutorial",
"save",
"exports.txt",
"plugins"
],
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}