-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
{
"name": "chess-agent",
"version": "1.0.0",
"description": "Chess agent",
"main": "src/core/main.ts",
"scripts": {
"start:react": "vite",
"start:electron": "electron .",
"start": "concurrently \"npm run start:react\" \"wait-on http://localhost:5173/src/app/main/ && npm run start:electron\"",
"test": "vitest",
"package": "electron-forge package",
"make": "electron-forge make",
"build": "tsc -b && vite build"
},
"keywords": [
"chess"
],
"author": "Ruslan Gadeev",
"license": "MIT",
"type": "module",
"dependencies": {
"@nut-tree-fork/nut-js": "^4.2.6",
"chess.js": "^1.4.0",
"electron-squirrel-startup": "^1.0.1",
"react": "^19.2.4",
"react-chessboard": "^5.10.0",
"react-dom": "^19.2.4",
"tippy.js": "^6.3.7",
"uiohook-napi": "^1.5.4"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.32.0",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.2.1",
"electron": "^40.6.0",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wait-on": "^9.0.4"
}
}