-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
55 lines (55 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "espruino-web-ide",
"version": "0.79.8",
"description": "A Terminal and Graphical code Editor for Espruino JavaScript Microcontrollers",
"//1": "-------------------------------------------------------- nw.js",
"main": "main.html",
"window": {
"title": "Espruino Native IDE",
"toolbar": false,
"frame": false,
"show": true,
"fullscreen": false,
"width": 1024,
"height": 600,
"position": "center"
},
"chromium-args": "--enable-web-bluetooth",
"//chromium-args": "--enable-logging=stderr --enable-web-bluetooth",
"//2": "-------------------------------------------------------- NPM",
"bin": {
"espruino-web-ide": "./nw-loader.js",
"espruino-server": "./server.js"
},
"scripts": {
"start": "nw .",
"web": "serve ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Espruino/EspruinoWebIDE.git"
},
"keywords": [
"espruino"
],
"author": "Gordon Williams <[email protected]> (http://espruino.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/espruino/EspruinoWebIDE/issues"
},
"homepage": "https://github.com/espruino/EspruinoWebIDE#readme",
"//nw": "^0.18.6 - you can still use a global nw, or just the server",
"dependencies": {
"nw": "^0.50.1",
"utf8": "^2.1.2",
"websocket": "^1.0.23"
},
"optionalDependencies": {
"@abandonware/noble": "^1.9.2-10",
"serialport": "^9.0.1",
"winnus": ""
},
"devDependencies": {
"serve": "^14.2.1"
}
}