-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.77 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
{
"name": "aiagent",
"private": true,
"version": "1.0.1",
"main": "electron.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm:dev:vite\" \"npm:dev:electron\"",
"dev:vite": "vite",
"dev:electron": "cross-env NODE_ENV=development electron .",
"prod": "npm-run-all -s prod:vite prod:electron",
"prod:vite": "vite build",
"prod:electron": "electron .",
"build": "npm-run-all -s build:vite build:electron",
"build:vite": "vite build",
"build:electron": "npm run build:electron:linux",
"build:electron:linux": "electron-builder --linux",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"build": {
"publish": false,
"appId": "mg.rivolink.aiagent",
"files": [
"dist/**/*",
"electron.js"
],
"directories": {
"buildResources": "assets"
},
"linux": {
"target": "AppImage",
"category": "Utility"
}
},
"dependencies": {
"classnames": "^2.5.1",
"fleet.js": "^1.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^35.0.0",
"electron-builder": "^25.1.8",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"npm-run-all": "^4.1.5",
"vite": "^6.2.0"
}
}