This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
104 lines (104 loc) · 2.4 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
{
"name": "blockpi",
"version": "1.2.1",
"description": "A visual programming editor for Raspberry Pi",
"main": "BlockPi/main.js",
"scripts": {
"build:blocks": "gulp build-blocks",
"build:generator": "gulp build-python",
"start": "electron .",
"dist:win": "electron-builder --win",
"dist:linux": "electron-builder --linux",
"postinstall": "electron-builder install-app-deps"
},
"author": {
"name": "Zhang Yiwei",
"email": "[email protected]"
},
"homepage": "https://github.com/alienzhangyw/BlockPi",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/alienzhangyw/BlockPi.git"
},
"devDependencies": {
"electron": "^17.0.0",
"electron-builder": "^22.14.13",
"electron-reload": "^1.5.0",
"fs": "0.0.1-security",
"google-closure-compiler": "^20210202.0.0",
"google-closure-deps": "^20210106.0.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^3.0.0",
"rimraf": "^3.0.2",
"yargs": "^16.2.0"
},
"dependencies": {
"electron-updater": "^4.6.5",
"iconv-lite": "^0.6.2"
},
"build": {
"appId": "com.github.alienzhangyw.blockpi",
"productName": "BlockPi",
"copyright": "Copyright © 2019-2022 ${author}",
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"BlockPi/**/*"
],
"publish": [
{
"provider": "github",
"owner": "alienzhangyw",
"repo": "BlockPi"
}
],
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": true,
"createDesktopShortcut": true,
"deleteAppDataOnUninstall": true
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": "armv7l"
},
{
"target": "deb",
"arch": ["armv7l", "arm64"]
}
],
"category": "Development"
},
"appImage": {
"license": "build/LICENSE.txt"
},
"deb": {
"fpm": [
"--architecture=all",
"--before-install=build/requirements.sh"
],
"depends": [
"python3",
"gconf2",
"gconf-service",
"libnotify4",
"libxtst6",
"libnss3",
"python3-gpiozero",
"sense-hat",
"python3-sense-emu",
"sense-emu-tools",
"python3-picamera"
]
}
}
}