-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.38 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.38 KB
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
56
57
58
59
60
61
62
63
64
65
{
"name": "arduino-cloud-ide",
"version": "1.0.0",
"description": "Arduino IDE with Cloud Board Manager and OTA Updates",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"build:mac": "electron-builder --mac"
},
"dependencies": {
"appwrite": "^13.0.0",
"bcryptjs": "^2.4.3",
"electron-store": "^11.0.2",
"inspire-tree": "^4.3.1",
"inspire-tree-dom": "^4.0.6",
"lodash": "^4.17.23",
"monaco-editor": "^0.55.1",
"node-pty": "^1.1.0",
"serialport": "^12.0.0",
"uuid": "^9.0.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"build": {
"appId": "com.arduino.cloud-ide",
"productName": "Arduino Knurdz IDE",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!resources/arduino-cli/**/*"
],
"extraResources": [
{
"from": "resources/arduino-cli/",
"to": "arduino-cli",
"filter": [
"**/*"
]
}
],
"mac": {
"target": "zip",
"category": "public.app-category.developer-tools"
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development"
}
},
"author": "vishva",
"license": "ISC",
"devDependencies": {
"electron": "^39.1.2",
"electron-builder": "^26.0.12"
}
}