forked from zenghongtu/PPet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.93 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
{
"name": "PPet3",
"version": "3.3.0",
"description": "给你的桌面添加一点趣味~",
"license": "MIT",
"private": true,
"main": "dist/main/index.cjs",
"repository": "https://github.com/zenghongtu/PPet.git",
"homepage": "https://github.com/zenghongtu/PPet",
"author": "zenghongtu <[email protected]>",
"scripts": {
"start": "node scripts/watch.mjs",
"build": "node scripts/build.mjs",
"dist": "yarn build && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"dist:all": "yarn run dist -wml",
"dist:win": "yarn run dist --win --ia32",
"dist:mac": "yarn run dist -m",
"dist:linux": "yarn run dist -l",
"release": "yarn dist -wml -p always",
"patch": "yarn version --patch",
"minor": "yarn version --minor",
"major": "yarn version --major"
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@electron/remote": "^2.0.1",
"@rematch/core": "^2.2.0",
"@rematch/persist": "^2.1.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/redux-state-sync": "^3.1.2",
"@types/styled-components": "^5.1.19",
"@vitejs/plugin-react": "^1.1.4",
"antd": "^4.16.13",
"chalk": "^5.0.0",
"electron": "16.0.6",
"electron-builder": "^22.14.5",
"electron-store": "^8.0.1",
"electron-window-state": "^5.0.3",
"font-awesome": "^4.7.0",
"globby": "^11.0.4",
"less": "^4.1.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"redux-state-sync": "^3.1.2",
"styled-components": "^5.3.3",
"typescript": "^4.4.4",
"vite": "^2.7.10",
"vite-plugin-imp": "^2.1.3"
},
"env": {
"//": "Used in build scripts",
"HOST": "127.0.0.1",
"PORT": 3344
}
}