-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.04 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
{
"name": "okgame",
"version": "3.0.33",
"description": "bob's game - puzzle game engine",
"main": "dist/main/index.js",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node server/ai_proxy.js",
"dev:electron": "concurrently \"vite\" \"electron .\"",
"build": "tsc && vite build",
"build:electron": "npm run build && electron-builder",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"deploy:hetzner": "./scripts/deploy-with-rollback.sh"
},
"keywords": [
"game",
"puzzle",
"electron",
"pixi"
],
"author": "Robert Pelloni",
"license": "SEE LICENSE",
"devDependencies": {
"@capacitor/cli": "^8.4.1",
"@types/howler": "^2.2.11",
"@types/node": "^20.10.0",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"concurrently": "^8.2.2",
"cors": "^2.8.6",
"electron": "^42.4.1",
"electron-builder": "^26.8.1",
"eslint": "^8.55.0",
"express": "^5.2.1",
"typescript": "^5.3.2",
"vite": "^8.0.16",
"vite-plugin-electron": "^0.15.5",
"vite-plugin-electron-renderer": "^0.14.5"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@pixi/sound": "^5.2.2",
"butterchurn": "^2.6.7",
"butterchurn-presets": "^2.4.7",
"chiptune3": "^0.8.6",
"eventemitter3": "^5.0.1",
"howler": "^2.2.4",
"localforage": "^1.10.0",
"openai": "^6.35.0",
"pako": "^2.1.0",
"pixi.js": "^8.0.0",
"socket.io-client": "^4.7.2"
},
"build": {
"appId": "com.bobsgame.okgame",
"productName": "bob's game",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"resources/**/*"
],
"mac": {
"target": "dmg",
"icon": "bobsgame.icns"
},
"win": {
"target": "nsis",
"icon": "bobsgame.ico"
},
"linux": {
"target": "AppImage",
"icon": "bobsgame.png"
}
}
}