forked from Unk1ndledAC/GalEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.93 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
{
"name": "galengine-editor",
"version": "0.2.0",
"description": "GalEngine Visual Novel Engine & IDE — TypeScript rewrite",
"main": "dist/main.js",
"scripts": {
"dev": "vite",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"build": "npm run build:main && npm run build:renderer",
"start": "npm run build && electron .",
"preview": "vite preview",
"electron:dev": "npm run build:main && concurrently -k \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"lint": "eslint src/ --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"typecheck:main": "tsc -p tsconfig.main.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"icon": "python scripts/generate-icon.py",
"package": "powershell -ExecutionPolicy Bypass -File scripts/build-package.ps1",
"package:dir": "powershell -ExecutionPolicy Bypass -File scripts/build-package.ps1 -DirOnly",
"package:win": "npm run build && electron-builder --win --config electron-builder.yml",
"package:linux": "npm run build && electron-builder --linux --config electron-builder.yml"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"allotment": "^1.20.2",
"fuse.js": "^7.0.0",
"lucide-react": "^0.460.0",
"monaco-editor": "^0.52.0",
"pako": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reactflow": "^11.11.4",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.0.0",
"electron": "^42.3.0",
"electron-builder": "^26.8.1",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vitest": "^4.1.7",
"wait-on": "^8.0.0"
}
}