-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "STudio4Education",
"productName": "STudio4Education",
"description": "STudio4Education is a web-based visual programming editor for [STmicroelectronics boards](https://www.st.com/content/st_com/en.html)",
"license": "BSD-3-Clause",
"keywords": [
"blockly",
"ST",
"STM",
"STmicro",
"ST32",
"STM32",
"Nucleo",
"blocks",
"scratch",
"S4E",
"STudio4Education",
"electron",
"ELECTRON"
],
"main": "./main.js",
"version": "0.9.1",
"author": "Sébastien Canet <[email protected]>",
"build": {
"asar": true,
"appId": "com.electron.STudio4Education",
"directories": {
"buildResources": "./src",
"output": "./dist"
},
"buildDependenciesFromSource": true,
"npmRebuild": false,
"productName": "STudio4Education",
"win": {
"target": [
"zip"
],
"icon": "src/appIcon.png",
"files": [
"!dist*/*",
"!nbproject/*",
"!.github/*",
"!.settings/*",
"!.vscode/*",
"!*.ffs_db",
"!*.ffs_gui",
"!*python/*",
"!*/thumbs.db",
"!*/Thumbs.db",
"!*.mp4"
]
},
"nsis": {
"installerIcon": "src/install.ico",
"uninstallerIcon": "src/icon.ico",
"oneClick": false,
"perMachine": true,
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true,
"runAfterFinish": true
},
"fileAssociations": {
"ext": "S4E",
"name": "S4E File",
"role": "Editor",
"icon": "src/icon.ico"
},
"extraFiles": [
"compiler",
"documentation",
"nodejs",
"sketchbook",
"www",
"CHANGELOG.txt",
"README.md",
"LICENSE"
],
"publish": [
{
"provider": "github",
"repo": "A-S-T-U-C-E/S4E_Electron",
"owner": "SebCanet",
"releaseType": "release"
}
]
},
"scripts": {
"start": "electron .",
"compile32": "electron-builder --win --ia32",
"compile64": "electron-builder --win --x64",
"compile": "npm run compile32 && npm run compile64"
},
"repository": {
"type": "git",
"url": "https://github.com/A-S-T-U-C-E/S4E_Electron"
},
"bugs": {
"url": "https://github.com/A-S-T-U-C-E/S4E_Electron/issues"
},
"dependencies": {
"@electron/remote": "^2.0.5",
"edit-json-file": "^1.7.0",
"express": "^4.19.2",
"fs-extra": "^10.0.1",
"node-red": "^2.2.2",
"node-red-contrib-arrowhead": "^0.2.2",
"node-red-contrib-blockly": "^2.0.0",
"node-red-contrib-jacdac": "^1.2.14",
"node-red-node-arduino": "^0.3.1",
"tableify": "^1.1.1"
},
"devDependencies": {
"electron": "^17.2.0",
"electron-builder": "^24.13.3"
}
}