-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.7 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
{
"name": "noggles.app",
"version": "0.0.2",
"author": "@ripe0x",
"description": "⌐◨-◨",
"license": "CC0-1.0",
"main": "noggles.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ripe0x/noggles.app"
},
"build": {
"productName": "⌐◨-◨",
"appId": "wtf.nogglesapp",
"compression": "maximum",
"copyright": "No Copyright (CC0 1.0) 2022. No rights reserved. ⌐◨-◨",
"mac": {
"icon": "build/icon.png",
"category": "public.app-category.utilities",
"darkModeSupport": true,
"target": {
"target": "dmg",
"arch": [
"x64"
]
}
},
"win": {
"icon": "build/icon.png"
},
"afterSign": "scripts/notarize.js",
"files": [
"build/**/*",
"noggles.js"
],
"directories": {
"buildResources": "build"
},
"extraResources": [
"assets/**"
]
},
"scripts": {
"build": "rimraf lib/ && tsc",
"deploy": "yarn build && standard-version",
"docs": "typedoc",
"lint": "tsc --noEmit && eslint . --ext js,ts",
"test": "jest",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder",
"dist": "electron-builder --publish never"
},
"dependencies": {
"dotenv": "^16.0.1",
"electron-squirrel-startup": "^1.0.0",
"menubar": "^9.2.0"
},
"devDependencies": {
"@amaurym/config": "^1.3.5",
"electron": ">=17.2.0",
"electron-builder": "^23.1.0",
"electron-notarize": "^1.2.1",
"got": "^12.2.0"
},
"peerDependencies": {
"electron": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
}