-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "mindmaps-desktop",
"version": "1.0.0",
"description": "Desktop app for mindmaps built with electron",
"main": "main.js",
"scripts": {
"update-src": "rm -rf ./app/ && git clone -b gh-pages --single-branch https://github.com/lgg/mindmaps app",
"preinstall": "npm run update-src",
"start": "electron .",
"build": "npm run update-src && npm run dist",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"build2": "echo 'no builder provided'",
"build-with-packager": "electron-packager . mindmaps-desktop --ignore='.idea' --out out"
},
"build": {
"appId": "com.electron.mindmaps",
"asar": true,
"directories": {
"app": "."
},
"mac": {
"category": "public.app-category.productivity"
}
},
"repository": "https://github.com/lgg/mindmaps-desktop",
"keywords": [
"Electron",
"mindmap",
"mindmaps",
"offline",
"mindmaps-desktop"
],
"author": "lgg",
"license": "AGPL-3.0",
"devDependencies": {
"electron": "~1.6.2"
}
}