-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.13 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
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
90
91
92
93
94
{
"name": "klein",
"productName": "Klein",
"version": "0.0.5",
"description": "Klein helps you install, run, and manage your node without the need of technical skills.",
"main": "app.js",
"scripts": {
"start": "electronmon .",
"test": "jest --forceExit --detectOpenHandles",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node101-io/klein-v1.git"
},
"author": {
"name": "node101",
"email": "[email protected]",
"url": "https://node101.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/node101-io/klein-v1/issues"
},
"homepage": "https://github.com/node101-io/klein-v1#readme",
"build": {
"appId": "io.node101.klein",
"files": [
"build/**/*",
"controllers/**/*",
"middleware/**/*",
"modules/**/*",
"node_modules/**/*",
"public/**/*",
"routes/**/*",
"translations/**/*",
"utils/**/*",
"views/**/*",
"websocket/**/*",
"app.js",
"package.json",
"yarn.lock"
],
"protocols": {
"name": "klein-run",
"schemes": [
"klein-run"
]
},
"mac": {
"hardenedRuntime": true,
"extendInfo": {
"LSUIElement": 1
},
"notarize": true
},
"linux": {
"target": [
"AppImage"
]
},
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"devDependencies": {
"@electron/notarize": "^2.3.2",
"electron": "^28.1.3",
"electron-builder": "^24.13.3",
"electronmon": "^2.0.3",
"jest": "^29.7.0"
},
"dependencies": {
"@chain-registry/client": "^1.48.65",
"ansi-html-community": "^0.0.8",
"async": "^3.2.5",
"body-parser": "^1.20.2",
"cluster": "^0.7.7",
"croner": "^8.0.2",
"dotenv": "^16.3.1",
"electron-updater": "^6.1.7",
"express": "^4.18.2",
"express-session": "^1.18.0",
"i18n": "^0.15.1",
"node-fetch": "2.6.9",
"pug": "^3.0.2",
"serve-favicon": "^2.5.0",
"ssh2": "^1.15.0",
"update-electron-app": "^3.0.0",
"ws": "^8.16.0"
}
}