-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 1012 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": "codepoems",
"version": "0.0.1",
"description": "This an experimental IDE for Processing.",
"main": "app/app.html",
"author": "necsoft",
"repository": "https://github.com/necsoft/codepoems",
"window": {
"title": "Codepoems",
"always-on-top": true,
"toolbar": false,
"frame": false,
"show": false
},
"dependencies": {
"event-stream": "^3.3.1",
"fluidity": "*",
"image-size": "^0.3.5",
"mkdirp": "*",
"ncp": "^2.0.0",
"ps-node": "0.0.4",
"readdirp": "^1.3.0",
"request": "^2.61.0",
"rimraf": "^2.3.4",
"tree-kill": "^0.1.1"
},
"scripts": {
"build_osx64": "rm -rf build/osx64/ && nwbuild --version 0.12.2 --macIcns ./icon/codepoems.icns --platforms osx64 -o ./build/ ./",
"build_linux64": "rm -rf build/linux64/ && nwbuild --version 0.12.2 --platforms linux64 -o ./build/ ./",
"build_win64": "rm -rf build/win64/ && nwbuild --version 0.12.2 --winIco ./icon/codepoems.ico --platforms win64 -o ./build/ ./"
}
}