forked from SheepTester/words-go-here
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "scratch3-packager",
"version": "0.3.2",
"main": "main.js",
"description": "An electron app that packages Scratch project into HTML",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengshuo2004/SB3toHTML.git"
},
"author": "David Feng",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengshuo2004/SB3toHTML/issues"
},
"homepage": "https://github.com/fengshuo2004/SB3toHTML#readme",
"devDependencies": {
"electron": "^19.0.6",
"electron-builder": "^23.1.0"
},
"build": {
"appId": "com.pixelworld.sbconv",
"files": [
"!wrapper${/*}"
],
"mac": {
"category": "public.app-category.utilities"
},
"linux": {
"category": "Utility"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"language": 2052
}
}
}