-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "thorium-kiosk",
"version": "2.0.8",
"description": "A client application for Thorium",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "electron-builder -mwl",
"dist": "electron-builder -mwl -p always",
"postinstall": "electron-builder install-app-deps && npm run rebuild",
"rebuild": "npm rebuild --runtime=electron --target=4.1.4 --disturl=https://atom.io/download/atom-shell --abi=69"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thorium-Sim/thorium-kiosk.git"
},
"keywords": [
"electron"
],
"author": "Alex Anderson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thorium-Sim/thorium-kiosk/issues"
},
"homepage": "https://github.com/Thorium-Sim/thorium-kiosk#readme",
"devDependencies": {
"electron": "^4.1.4",
"electron-builder": "^20.40.2"
},
"build": {
"appId": "us.fyreworks.thorium",
"productName": "Thorium",
"asar": false,
"directories": {
"output": "./packages"
},
"publish": {
"provider": "github"
},
"files": [
"src/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.entertainment",
"icon": "./public/icon.icns"
},
"win": {
"icon": "./public/icon.ico"
}
},
"dependencies": {
"bonjour": "^3.5.0",
"electron-settings": "^3.2.0",
"electron-updater": "^4.0.6",
"power-off": "^1.1.2",
"sleep-mode": "^1.1.0",
"uuid": "^3.3.2"
}
}