forked from sencha/electron-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (36 loc) · 1.9 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": "ext-electron",
"version": "1.0.0",
"description": "Ext JS / Electron demo workspace",
"main": "index.js",
"scripts": {
"app": "electron app",
"build-dev": "sencha --cwd app app build --dev",
"build-prod": "sencha --cwd app app build --clean --production",
"bundle-all": "sencha --cwd app app build --clean --production && electron-packager app/build/production App --all --out build/electron",
"bundle-win32": "sencha --cwd app app build --clean --production && electron-packager app/build/production App --platlform=windows --arch=32 --out build/electron",
"bundle-win64": "sencha --cwd app app build --clean --production && electron-packager app/build/production App --platlform=windows --arch=64 --out build/electron",
"bundle-osx": "sencha --cwd app app build --clean --production && electron-packager app/build/production App --platform=osx --out build/electron",
"bundle-linux32": "sencha --cwd app app build --clean --production && electron-packager app/build/production App --platlform=linux --arch=x86 --out build/electron",
"bundle-linux64": "sencha --cwd app app build --clean --production && electron-packager app/build/production App --platlform=linux --arch=x86_64 --out build/electron",
"clean": "rm -rf ext; rm -rf .sencha; rm -rf app/.sencha; rm -rf node_modules; rm -rf app/node_modules; rm -rf build"
},
"repository": {
"type": "git",
"url": "git@github.com:sencha/ext-electron.git"
},
"keywords": [
"extjs",
"electron"
],
"author": "Sencha",
"license": "ISC",
"bugs": {
"url": "https://github.com/dongryphon/ext-electron/issues"
},
"homepage": "https://github.com/dongryphon/ext-electron#readme",
"devDependencies": {
"electron": "^1.4.4",
"electron-packager": "^8.2.0"
}
}