-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
61 lines (61 loc) · 2.13 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
{
"name": "lockpass",
"version": "0.0.14",
"description": "a password manager",
"main": "./out/main/index.js",
"author": "zhang.yuxin",
"homepage": "https://electron-vite.org",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .jsx,.ts,.tsx --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": "chcp 65001&&electron-vite preview ",
"dev": "chcp 65001 && electron-vite dev --inspect",
"build": "npm run typecheck && electron-vite build",
"build:win": "electron-builder --win",
"build:mac": " electron-builder --mac",
"build:linux": " electron-builder --linux",
"get:ver": "electron -v&&electron -a",
"release": "electron-builder --publish always",
"tailwind": "tailwindcss -i ./src/renderer/src/assets/tailwind.css -o ./src/renderer/src/assets/tailwind_out.css --watch"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"electron-updater": "^6.3.4",
"reflect-metadata": "^0.2.2",
"robotjs_addon": "^0.6.4",
"sqlite3": "^5.1.7",
"zip-lib": "^1.0.4"
},
"devDependencies": {
"@ant-design/icons": "^5.4.0",
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/fuses": "^1.8.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.1",
"antd": "^5.17.4",
"antd-img-crop": "^4.23.0",
"cross-env": "^7.0.3",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"path-to-regexp": "^6.2.2",
"prettier": "^3.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"vite": "^5.4.2",
"zustand": "^5.0.0-rc.2"
}
}