-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (71 loc) Β· 1.87 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (71 loc) Β· 1.87 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
{
"name": "iris-mini",
"description": "A lightweight CLI Voice Assistant powered by Gemini with Ultra Low Latency",
"author": {
"name": "Harsh Pandey",
"email": "gamerpandeyharsh@gmail.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/201Harsh/iris-mini.git"
},
"bugs": {
"url": "https://github.com/201Harsh/iris-mini/issues"
},
"homepage": "https://irisaiw.vercel.app",
"private": false,
"version": "1.1.2",
"type": "module",
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"bin": {
"iris": "./dist/cli.js"
},
"scripts": {
"dev": "nodemon -w src/server -x tsx src/server/main.ts",
"start": "cross-env NODE_ENV=production NODE_NO_WARNINGS=1 node dist/cli.js",
"build:ui": "vite build",
"build:cli": "node build.js",
"release": "npm run build:ui && npm run build:cli && npm pack"
},
"dependencies": {
"@google/genai": "^2.20.0",
"@inquirer/prompts": "^8.7.0",
"@react-three/drei": "^10.7.8",
"@react-three/fiber": "^9.7.0",
"@tailwindcss/vite": "^4.3.3",
"chalk": "^6.0.0",
"cross-env": "^10.1.0",
"decibri": "^5.7.0",
"dotenv": "^17.4.2",
"express": "^5.1.0",
"fkill": "^10.0.3",
"framer-motion": "^13.1.1",
"gsap": "^3.15.0",
"lucide-react": "^1.38.0",
"open": "^11.0.2",
"react": "^19.1.0",
"react-dom": "^19.2.8",
"react-icons": "^5.7.0",
"react-toastify": "^11.1.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tailwindcss": "^4.3.3",
"three": "^0.185.1",
"typescript": "^7.0.2",
"vite-express": "*"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.1",
"nodemon": "^3.1.10",
"tsx": "^4.23.13",
"vite": "^8.2.2"
}
}