forked from baizeteam/baize-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.81 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "baize-toolbox",
"version": "0.0.1",
"description": "An Electron application with React and TypeScript",
"main": "./out/main/index.js",
"author": "xiaoyu@sulg.top",
"homepage": "https://electron-vite.org",
"scripts": {
"format": "prettier --write . .prettierrc",
"husky": "husky install",
"lint-staged": "lint-staged",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "electron-vite build && electron-builder --mac --config",
"build:linux": "electron-vite build && electron-builder --linux --config",
"build:all": "npm run build:win && npm run build:mac && npm run build:linux"
},
"volta": {
"node": "16.16.0"
},
"engines": {
"node": ">=16.16.0"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx,json}": "prettier --write"
},
"dependencies": {
"ajv": "^8.12.0",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.7",
"js-web-screen-shot": "1.9.9-rc.18",
"lodash": "^4.17.21",
"mobx-react": "^9.1.1",
"nanoid": "^5.0.6",
"path": "^0.12.7"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@koale/useworker": "^4.0.2",
"@lobehub/tts": "^1.24.0",
"@types/node": "^18.19.5",
"@types/react": "^18.2.47",
"@types/react-css-modules": "^4.6.8",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"ahooks": "^3.7.11",
"antd": "^5.13.3",
"autoprefixer": "^10.4.19",
"axios": "^1.6.5",
"babel-plugin-react-css-modules": "^5.2.6",
"bufferutil": "^4.0.8",
"dayjs": "^1.11.10",
"electron": "^29.1.6",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"generic-names": "^4.0.0",
"husky": "^9.0.11",
"i18next": "^23.11.0",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"mobx": "^6.12.0",
"npm-run-all": "^4.1.5",
"postcss-less": "^6.0.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-router-dom": "^6.21.2",
"rollup-plugin-copy": "^3.5.0",
"systeminformation": "^5.22.7",
"terser": "^5.30.0",
"typescript": "^5.3.3",
"utf-8-validate": "^6.0.3",
"vite": "5.0.12",
"vite-plugin-react-css-modules": "^1.0.0",
"ws": "^8.16.0"
}
}