-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.62 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.62 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
66
67
68
69
70
71
72
73
74
{
"name": "40code",
"version": "3.4.7",
"description": "40code offline editor",
"main": "main.js",
"author": "40codeTeam <1@40code.com> (https://github.com/40codeTeam/40code-desktop)",
"license": "GPLv3",
"scripts": {
"start": "electron . --openssl-legacy-provider",
"icon": "yarn run electron-icon-maker --input=logo1.png --output=./build/",
"build": "yarn run icon && electron-builder --publish never",
"CICD_build": "yarn build"
},
"repository": "https://github.com/40codeTeam/40code-desktop",
"keywords": [
"40code"
],
"file-associations": [
{
"ext": "sb3",
"name": "40code作品",
"role": "Editor"
}
],
"build": {
"appId": "com.40code.desktop",
"mac": {
"icon": "icons/mac/icon.icns",
"target": [
"dmg",
"zip"
]
},
"dmg": {
"backgroundColor": "#4b9aed"
},
"win": {
"icon": "icons/win/icon.ico",
"target": [
"nsis",
"zip"
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"linux": {
"category": "Education",
"icon": "icons/png",
"target": [
"AppImage",
"zip",
"deb",
"pacman",
"rpm",
"snap"
]
}
},
"devDependencies": {
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"electron-icon-maker": "^0.0.5",
"electron-packager": "^17.1.2"
},
"dependencies": {
"fs-extra": "^11.2.0",
"mousetrap": "^1.6.5"
}
}