-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 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
{
"name": "KityManager",
"version": "0.1.2",
"description": "Using KityMinder offline with Electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "bower install",
"pack:win": "electron-packager . --platform=win32 --arch=all --icon=icons/icon.ico --out=dist/ --overwrite --ignore=\"(.git|.vscode)\"",
"pack:linux": "electron-packager . --platform=linux --arch=all --icon=icons/icon.ico --out=dist/ --overwrite --ignore=\"(.git|.vscode)\"",
"pack:macos": "electron-packager . --platform=darwin --arch=all --icon=icons/icon.icns --out=dist/ --overwrite --ignore=\"(.git|.vscode)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/StdioA/kitymanager.git"
},
"keywords": [],
"author": "David Dai",
"license": "ISC",
"bugs": {
"url": "https://github.com/StdioA/kitymanager/issues"
},
"homepage": "https://github.com/StdioA/kitymanager#readme",
"devDependencies": {
"electron": "^3.0.7",
"electron-packager": "^13.0.0"
},
"dependencies": {
"kityminder-core": "^1.4.50"
}
}