-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "wolai_desktop",
"version": "0.0.4",
"description": "wolai_desktop",
"repository": {
"url": "https://github.com/lake2/wolai_desktop"
},
"main": "run/index.js",
"files": [
"src/**/*"
],
"scripts": {
"dev": "electron ./run/index.js",
"build": "tsc && electron-builder",
"lint": "./node_modules/.bin/eslint src/** --fix",
"test": "jest --bail"
},
"build": {
"appId": "cn.lake.wolai",
"icon": "./images/wolai_icon_1024.png",
"files": [
"./images/**/*",
"./run/**/*"
],
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [],
"author": "lake2",
"license": "MIT",
"dependencies": {
"electron-store": "^6.0.0",
"jquery": "^3.5.1"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/jquery": "^3.5.1",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"electron": "^10.1.1",
"electron-builder": "^22.8.0",
"eslint": "^7.4.0",
"jest": "^26.0.1",
"typescript": "^3.9.2"
}
}