generated from catdad/electron-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "glittr",
"productName": "Glittr",
"appId": "com.catdad.glittr",
"version": "1.0.1",
"description": "Bedazzle all your clicks!",
"author": "Kiril Vatev <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/glitter-xyz/glittr.git"
},
"bugs": {
"url": "https://github.com/glitter-xyz/glittr/issues"
},
"homepage": "https://github.com/glitter-xyz/glittr#readme",
"main": "main.js",
"scripts": {
"start": "electron-background .",
"dev": "electronmon .",
"dev:debug": "cross-env DEBUG_DAZZLE=1 npm run -s dev",
"test": "mocha --timeout 30000 --slow 0 \"test/**/*.test.js\"",
"postinstall": "npm-run-all prep",
"prep": "npm-run-all prep:*",
"prep:icons": "svg-app-icon --destination icons -s 16 -s 32 -s 256 < assets/icon.svg",
"package": "run-script-os",
"package:win32": "electron-builder --config .electron-builder.js --publish never --win",
"package:darwin": "electron-builder --config .electron-builder.js --publish never --mac",
"package:linux": "electron-builder --config .electron-builder.js --publish never --linux",
"package:default": "echo \"Error: this OS is not supported\" && exit 1"
},
"devDependencies": {
"chai": "^4.3.4",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"electron": "^12.1.0",
"electron-background": "^1.0.0",
"electron-builder": "^22.9.1",
"electronmon": "^2.0.0",
"eslint": "^5.16.0",
"mocha": "^9.0.1",
"npm-run-all": "^4.1.5",
"puptron": "0.0.5",
"run-script-os": "^1.1.6",
"svg-app-icon": "^1.1.0",
"tempy": "^0.5.0",
"wait-for-throwable": "^1.0.1"
},
"dependencies": {
"callsites": "^3.1.0",
"canvas-confetti": "^1.4.0",
"iohook": "^0.9.3",
"lodash": "^4.17.21"
},
"iohook": {
"targets": [
"electron-87"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64"
]
}
}