-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.17 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.17 KB
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
{
"name": "QGenie",
"version": "0.0.2",
"description": "QGenie Electron Application",
"type": "module",
"main": "out/main/index.js",
"author": "Queryus",
"license": "ISC",
"homepage": "https://github.com/Queryus/QGenie_app#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Queryus/QGenie_app.git"
},
"bugs": {
"url": "https://github.com/Queryus/QGenie_app/issues"
},
"scripts": {
"prebuild": "chmod +x resources/mac/qgenie-*",
"format": "prettier --write .",
"lint": "eslint --cache .",
"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 .",
"dev": "cross-env NODE_ENV=development electron-vite dev -w",
"build:electron-app": "npm run typecheck && electron-vite build",
"build": "npm run build:electron-app && electron-builder --publish never",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build:electron-app && npm run build -- --dir",
"build:win": "npm run build:electron-app && npm run build -- --win",
"build:mac": "npm run build:electron-app && npm run build -- --mac",
"build:linux": "npm run build:electron-app && npm run build -- --linux",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@ai-sdk/react": "^1.2.12",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@swc/core": "^1.13.3",
"@xyflow/react": "^12.8.2",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"electron-updater": "^6.3.9",
"lucide-react": "^0.525.0",
"motion": "^12.23.6",
"next-themes": "^0.4.6",
"react-error-boundary": "^6.0.0",
"react-router-dom": "^7.6.3",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.3.5",
"uuid": "^11.1.0",
"wait-on": "^8.0.4"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^22.14.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"cross-env": "^10.0.0",
"electron": "^37.1.0",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"postcss": "^8.5.6",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.3",
"vite": "^6.2.6"
}
}