-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1001 Bytes
/
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
{
"name": "v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/purefan/vogula"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "DEBUG=* webpack --config webpack.config.cjs",
"start": "DEBUG=* electron index.cjs"
},
"keywords": [],
"author": "Miguel Espinoza",
"license": "ISC",
"devDependencies": {
"csp-html-webpack-plugin": "^5.1.0",
"css-loader": "^6.2.0",
"electron": "^14.0.1",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"sass-loader": "^12.1.0",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"chess-types": "file:../../chess-types/",
"chessground": "file:../chessground",
"mithril": "^2.0.4"
},
"build": {
"appId": "com.purefan.vogula",
"productName": "Vogula Chess",
"copyright": "MIT",
"output": "./dist"
}
}