forked from picoscratch/picoscratch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "picoscratch-learn",
"version": "1.7.3",
"description": "Learn Programming and Hardware with Scratch for the Raspberry Pi Pico",
"main": "main.js",
"homepage": "https://github.com/cfpwastaken/picoscratch-learn",
"scripts": {
"dist": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"npmRebuild": false,
"generateUpdatesFilesForAllChannels": true,
"publish": [
{
"provider": "generic",
"url": "https://update.picoscratch.de/picoscratch-learn",
"useMultipleRangeRequest": false
}
],
"appId": "de.cfp.picoscratch.learn",
"productName": "PicoScratch Learn",
"win": {
"target": [
"portable",
"nsis"
],
"publisherName": "cfp",
"icon": "picoscratch.ico",
"verifyUpdateCodeSignature": false
},
"linux": {
"target": [
"AppImage",
"deb"
],
"maintainer": "cfp",
"icon": "picoscratch.png",
"category": "Development"
}
},
"keywords": [],
"author": "cfp",
"license": "MIT",
"dependencies": {
"@electron/remote": "^2.0.8",
"electron-is-packaged": "^1.0.2",
"electron-prompt": "^1.7.0",
"electron-store": "^8.1.0",
"electron-updater": "^5.3.0",
"micropython-ctl-cont": "github:jakobrosenberg/micropython-ctl",
"reconnecting-websocket": "^4.4.0",
"serialport": "^11.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"electron": "^21.2.2",
"electron-builder": "^23.6.0",
"electron-rebuild": "^3.2.9"
}
}