-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
103 lines (103 loc) · 3.61 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "civitai-link",
"version": "1.20.2",
"description": "Download Civitai models to your Stable Diffusion models folder",
"main": "./out/main/index.js",
"author": "civitai.com",
"homepage": "https://www.civitai.com",
"repository": {
"type": "git",
"url": "https://github.com/civitai/civitai-link-desktop.git"
},
"engines": {
"node": "20.13.1",
"npm": "10.5.2"
},
"scripts": {
"format": "prettier --write .",
"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",
"recompute-hash": "ts-node -P tsconfig.scripts.json scripts/recompute-hash.ts",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch --inspect",
"build": "npm run typecheck && electron-vite build",
"build:win": "npm run build && electron-builder --win --config --publish always",
"build:mac": "electron-vite build && electron-builder --mac --config --publish always",
"build:linux": "electron-vite build && electron-builder --linux --config --publish always"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"axios": "^1.6.5",
"chokidar": "^3.5.3",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"electron-log": "^5.1.2",
"electron-store": "^8.1.0",
"electron-unhandled": "^4.0.1",
"electron-updater": "^6.1.7",
"framer-motion": "^11.0.24",
"fuse.js": "^7.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.378.0",
"pretty-bytes": "^6.1.1",
"react-icons": "^5.0.1",
"react-lottie-player": "^2.0.0",
"react-resizable-panels": "^2.0.16",
"react-router-dom": "^6.22.3",
"react-use-wizard": "^2.3.0",
"socket.io-client": "^4.7.4",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"uuid": "^9.0.1",
"virtua": "^0.31.0",
"workerpool": "^9.1.1",
"yaml": "^2.4.1"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.19",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-lottie": "^1.2.10",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"electron": "^30.0.6",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.11"
}
}