-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "hackmd-desktop",
"productName": "HackMD",
"version": "0.1.0",
"description": "HackMD desktop client",
"main": "main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development electron .",
"start": "cross-env NODE_ENV=production electron .",
"dist": "electron-builder -mw --linux deb",
"dist:macos": "electron-builder -m",
"dist:linux": "electron-builder --linux deb",
"lint": "standard",
"test": "npm run lint"
},
"author": "HackMD <[email protected]> (https://hackmd.io)",
"license": "MIT",
"devDependencies": {
"cross-env": "^3.1.4",
"devtron": "^1.4.0",
"electron": "^4.2.2",
"electron-builder": "^21.2.0",
"standard": "^9.0.2"
},
"build": {
"appId": "com.hackmd.desktop",
"mac": {
"category": "public.app-category.productivity"
}
},
"standard": {
"globals": [
"$",
"Notification"
]
},
"dependencies": {
"electron-config": "^0.2.1",
"electron-search-text": "^0.3.0",
"jquery": "^3.2.1",
"node-fetch": "^1.6.3",
"semver": "^5.3.0",
"validate.js": "^0.11.1"
}
}