-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"name": "auri",
"version": "0.1.0",
"description": "A generative desktop assistant for Ubuntu that transforms screenshots into actionable workflows",
"main": "dist/main/main/main.js",
"author": "Auri Team",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "vite",
"dev:main": "tsc -p tsconfig.main.json && NODE_ENV=development electron .",
"build": "npm run build:renderer && npm run build:main",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"start": "electron .",
"package": "electron-builder",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@tambo-ai/react": "^0.73.1",
"@tambo-ai/typescript-sdk": "^0.88.0",
"chokidar": "^4.0.3",
"electron-store": "^10.0.0",
"leaflet": "^1.9.4",
"lucide-react": "^0.563.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/leaflet": "^1.9.21",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"electron": "^35.7.5",
"electron-builder": "^26.0.0",
"typescript": "^5.7.3",
"vite": "^6.0.7"
},
"overrides": {
"glob": "^10.4.5",
"rimraf": "^5.0.10",
"inflight": "npm:lru-cache@^10.4.3",
"tar": "^7.4.3",
"boolean": "^3.2.0"
}
}