forked from xinghai-smartedu/classwindow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 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
{
"name": "classwindow-plus",
"productName": "ClassWindow plus",
"description": "ClassWindow plus is an enhanced version of ClassWindow, designed to provide additional features and improvements for classroom management and interaction.",
"version": "1.2.5",
"main": "main.js",
"repository": "https://github.com/wmsbsbs/classwindow-plus",
"author": "R3N",
"license": "Apache-2.0",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"changelog": "conventional-changelog -p conventionalcommits",
"build": "electron-builder"
},
"devDependencies": {
"@electron-forge/cli": "^7.10.2",
"@electron-forge/maker-deb": "^7.10.2",
"@electron-forge/maker-squirrel": "^7.10.2",
"@electron-forge/maker-zip": "^7.10.2",
"electron": "^39.2.7",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.classwindow.plus",
"productName": "ClassWindow Plus",
"directories": {
"output": "build-1.2.5"
},
"files": [
"**/*",
"!node_modules/**/*",
"!dist/**/*",
"!dist-new/**/*",
"!build-output/**/*",
"!installer/**/*",
"!cloud/**/*",
"!changelog/**/*",
"!readme/**/*"
],
"asar": true,
"win": {
"target": [
"nsis",
"zip"
],
"icon": "assets/logo.jpg"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/logo.jpg"
},
"linux": {
"target": [
"deb",
"rpm",
"tar.gz"
],
"icon": "assets/logo.jpg"
}
}
}