-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.18 KB
/
package.json
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
{
"name": "chess-hue",
"productName": "ChessHue",
"version": "0.1.0",
"description": "GUI for analysis of chess games, with automatic move grading.",
"keywords": [
"chess",
"board",
"game",
"move",
"analysis",
"evaluation",
"review",
"classification",
"annotation",
"engine",
"stockfish",
"chessground",
"electron",
"vue",
"javascript"
],
"repository": "https://github.com/adamsol/ChessHue",
"license": "GPL-3.0",
"author": {
"name": "Adam Sołtysik",
"url": "https://github.com/adamsol"
},
"scripts": {
"test": "vitest",
"watch": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"start": "electron ."
},
"dependencies": {
"chart.js": "^4.4.1",
"chess.js": "^1.0.0-beta.6",
"chessground": "^8.3.7",
"electron": "^28.1.3",
"electron-context-menu": "^3.6.1",
"electron-store": "^8.1.0",
"tinycolor2": "^1.6.0",
"vue": "^3.4.19",
"vue-chartjs": "^5.3.0",
"vue-loader": "^17.4.2",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"vitest": "^0.32.0"
},
"type": "module",
"main": "main.js"
}