-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 KB
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
{
"name": "spoofdpi-menubar",
"version": "1.0.7",
"description": "macOS menubar app to control spoofdpi",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:publish": "electron-builder --publish always",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version",
"release:patch": "npm run version:patch && npm run build:publish",
"release:minor": "npm run version:minor && npm run build:publish",
"release:major": "npm run version:major && npm run build:publish",
"update-server": "node local-update-server.js",
"test-update": "UPDATE_SERVER_URL=http://localhost:3000 electron ."
},
"keywords": [
"electron",
"menubar",
"spoofdpi"
],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4"
},
"build": {
"appId": "com.spoofdpi.menubar",
"productName": "SpoofDPI",
"asar": true,
"artifactName": "${productName}-${version}-mac.${ext}",
"publish": {
"provider": "github",
"owner": "poxju",
"repo": "SpoofDPIMenubar"
},
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.png"
},
"files": [
"main.js",
"index.html",
"renderer.js",
"assets/**/*"
],
"extraResources": [
"spoofdpi"
]
},
"dependencies": {
"electron-store": "^8.2.0",
"electron-updater": "^6.6.2"
}
}