-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.22 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.22 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
84
85
86
87
88
89
{
"name": "scarsoscacco",
"private": true,
"version": "1.4.0",
"description": "A modern chess application with integrated Stockfish AI engine built with Electron and React",
"author": "Scarso Scacco Team",
"type": "module",
"main": "electron/main.cjs",
"build": {
"appId": "com.tuonome.app",
"productName": "Scarso Scacco",
"icon": "assets/icon.png",
"files": [
"dist",
"electron"
],
"asarUnpack": [
"electron/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.png"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"requestedExecutionLevel": "asInvoker",
"icon": "assets/icon.png"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
}
},
"scripts": {
"dev": "vite",
"dev:electron": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"main": "electron/main.js",
"electron": "electron .",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"dist:linux": "npm run build && electron-builder --linux",
"release": "standard-version"
},
"dependencies": {
"chess.js": "^1.4.0",
"prop-types": "^15.8.1",
"react": "^19.1.0",
"react-chessboard": "^4.7.3",
"react-dom": "^19.1.0",
"stockfish.wasm": "^0.10.0"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^8.2.2",
"electron": "^36.5.0",
"electron-builder": "^26.0.12",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"standard-version": "^9.5.0",
"vite": "^6.3.5",
"wait-on": "^7.2.0"
}
}