-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 953 Bytes
/
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
{
"name": "neon-electron",
"version": "0.0.1",
"description": "A simple example of GUI application with Electron and Rust, by using neon.",
"private": "true",
"main": "src/launcher.js",
"keywords": [
"electron",
"Rust",
"neon"
],
"author": "Yusuke Sasaki <yusuke.sasaki.nuem@gmail.com>",
"license": "MIT",
"dependencies": {
"electron-prebuilt": "1.2.1",
"mandelbrot": "file:local_modules/mandelbrot"
},
"devDependencies": {
"@types/electron": "^1.4.30",
"@types/es6-promise": "0.0.32",
"electron-rebuild": "1.2.1",
"tslint": "^4.2.0",
"typescript": "^2.1.4"
},
"scripts": {
"compile": "tsc --pretty -p $(npm prefix)",
"local": "for m in `ls --color=none $(npm prefix)/local_modules`; do npm install $m; done",
"postinstall": "npm run local && npm run compile",
"lint": "tslint --project $(npm prefix)/tsconfig.json || true",
"start": "electron $(npm prefix)"
}
}