-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (68 loc) · 1.69 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
{
"name": "pedis",
"description": "a redis desktop tool",
"author": "woody([email protected])",
"private": true,
"version": "0.0.0",
"homepage": ".",
"license": "MIT",
"main": "./main.js",
"build": {
"directories": {
"output": "build"
},
"appId": "pedis",
"files": [
"!**/node_modules/*",
"dist/**/*",
"main.js",
"preload.js",
"renderer.js"
],
"includeSubNodeModules": false,
"icon": "./logo.ico",
"mac": {
"category": "woody.app.pedis"
},
"electronDownload": {
"mirror": "https://npm.taobao.org/mirrors/electron/"
}
},
"scripts": {
"dev": "vite",
"build": "tsc --skipLibCheck && vite build",
"preview": "vite preview",
"pack:mac": "electron-builder -m",
"pack": "electron-builder",
"start": "electron main.js"
},
"dependencies": {
"@douyinfe/semi-icons": "^2.13.0",
"@douyinfe/semi-ui": "^2.13.0",
"@icon-park/react": "^1.4.2",
"@semi-bot/semi-theme-doucreator": "^1.0.18",
"@semi-bot/semi-theme-pedis": "^1.0.1",
"ahooks": "^3.5.2",
"dva": "^2.4.1",
"dva-loading": "^3.0.22",
"ioredis": "^5.1.0",
"monaco-editor": "^0.33.0",
"node-uuid": "^1.4.8",
"react": "^18.0.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.0.0",
"react-intl-universal": "2.2.5",
"react-split-pane": "^0.1.92",
"vite-plugin-semi-theme": "^0.2.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"electron": "^19.0.7",
"electron-builder": "^23.1.0",
"typescript": "^4.6.3",
"vite": "^3.0.4",
"vite-plugin-monaco-editor": "^1.1.0"
}
}