-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
137 lines (137 loc) · 3.34 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "WIP",
"description": "Menubar app for WIP",
"version": "1.5.0",
"author": "Marc Köhlbrugge <hey@marckohlbrugge.com>",
"bugs": {
"url": "https://github.com/marckohlbrugge/wip-menubar/issues"
},
"dependencies": {
"buefy": "0.8",
"bulma": "^0.7.2",
"cron": "^1.6.0",
"electron-better-ipc": "^1.0.1",
"electron-debug": "3",
"electron-localshortcut": "^3.1.0",
"electron-store": "^5.1.1",
"electron-timber": "^0.5.1",
"electron-updater": "^4.0.6",
"form-data": "^2.3.3",
"graphql-request": "^1.8.2",
"lodash.debounce": "^4.0.8",
"moment-timezone": "^0.5.25",
"vue": "^2.5.22"
},
"devDependencies": {
"electron": "8",
"electron-builder": "^22.6.0",
"electron-builder-notarize": "^1.1.2",
"electron-reloader": "^1.0.1",
"eslint": "6",
"eslint-config-prettier": "6",
"eslint-plugin-prettier": "^3.0.1",
"husky": "2",
"lint-staged": "^8.0.4",
"prettier": "^1.15.3"
},
"homepage": "https://github.com/marckohlbrugge/wip-menubar#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"wip",
"electron",
"electron-app",
"macos",
"menubar",
"streak"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.html": [
"prettier --write",
"git add"
]
},
"main": "src/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/marckohlbrugge/wip-menubar.git"
},
"scripts": {
"dist": "electron-builder -mwl",
"dist-m": "electron-builder -m",
"dist-w": "electron-builder -w",
"dist-l": "electron-builder -l",
"pack": "electron-builder --dir",
"format": "prettier --write './src/**/*.{js,html}'",
"lint": "eslint .",
"start": "node_modules/electron/dist/Electron.app/Contents/MacOS/Electron src/app.js",
"release": "electron-builder -mwl"
},
"build": {
"directories": {
"output": "release"
},
"appId": "chat.wip.menubar",
"productName": "WIP",
"files": [
"src/",
"resources/",
"embedded.provisionprofile"
],
"afterSign": "electron-builder-notarize",
"mac": {
"target": [
"mas",
"dmg",
"zip"
],
"category": "public.app-category.productivity",
"entitlements": "build/entitlements.mac.plist",
"icon": "resources/app.icns",
"darkModeSupport": true,
"hardenedRuntime": true,
"extendInfo": {
"LSUIElement": 1,
"CFBundleURLSchemes": [
"wip"
],
"CFBundleURLName": "chat.wip.menubar"
}
},
"mas": {
"type": "distribution",
"category": "public.app-category.productivity",
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"provisioningProfile": "embedded.provisionprofile",
"icon": "resources/app.icns",
"darkModeSupport": true,
"hardenedRuntime": false,
"extendInfo": {
"LSUIElement": 1
}
},
"publish": {
"provider": "github",
"repo": "wip-menubar",
"owner": "marckohlbrugge",
"vPrefixedTagName": true
},
"linux": {
"executableName": "wip",
"category": "Productivity",
"publish": [
"github"
]
}
}
}