-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 967 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 967 Bytes
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
{
"name": "aufbau",
"productName": "Aufbau",
"version": "0.4.0",
"description": "A desktop app to view and use a hand-curated, artisanal selection of local web apps",
"license": "MIT",
"main": "index.js",
"repository": "ajam/aufbau",
"author": {
"name": "Michael Keller",
"email": "[email protected]",
"url": "github.com/ajam/aufbau"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "electron .",
"build": "electron-packager . Aufbau --out=aufbau-dist --ignore=aufbau-dist --asar --all --version=0.30.4 --overwrite --icon=assets/main.icns",
"install-apps": "./install-apps.js",
"postinstall": "npm run install-apps"
},
"keywords": [
"electron-app"
],
"dependencies": {
"chalk": "^1.1.0",
"electron-debug": "^0.1.1",
"queue-async": "^1.0.7",
"shelljs": "^0.5.1"
},
"devDependencies": {
"electron-packager": "^5.0.0",
"electron-prebuilt": "^0.30.4"
}
}