-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.77 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
{
"name": "learnX-companion",
"productName": "learnX Companion",
"description": "清华大学网络学堂 App 助手,为 learnX 提供个性化的推送通知支持。",
"author": {
"name": "Rui Ying",
"email": "[email protected]"
},
"version": "2.5.0",
"private": true,
"main": "app/index.js",
"scripts": {
"dev": "nextron",
"build": "nextron build --no-pack",
"build:all": "nextron build --win --mac --linux",
"build:win": "nextron build --win",
"build:mac": "nextron build --mac",
"build:linux": "nextron build --linux",
"release:gui": "nextron build --win --mac --linux --publish always",
"release:docker": "docker build --platform=linux/amd64 -t robertying/learnx-companion:latest . && docker push robertying/learnx-companion:latest",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@electron/notarize": "2.1.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.14.14",
"@mui/material": "5.14.14",
"@types/fs-extra": "11.0.3",
"@types/node": "20.8.7",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"axios": "1.5.1",
"dayjs": "1.11.10",
"dotenv": "16.3.1",
"electron": "27.0.1",
"electron-builder": "24.6.4",
"electron-is-dev": "2.0.0",
"electron-log": "5.0.0-rc.1",
"electron-serve": "1.1.0",
"electron-store": "8.1.0",
"electron-updater": "6.1.4",
"eslint": "8.51.0",
"eslint-config-next": "13.5.6",
"fs-extra": "11.1.1",
"next": "13.5.6",
"nextron": "8.12.0",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "2.2.4",
"thu-learn-lib-no-native": "github:robertying/thu-learn-lib-no-native",
"typescript": "5.2.2"
}
}