forked from IRISX-AI/IRIS-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) Β· 3.98 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) Β· 3.98 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "iris-ai",
"version": "1.3.0",
"description": "IRIS is not another chatbot you type at. It is an intelligent Voice-First Operating Layer that gives you complete, hands-free authority over your digital environment. It lives on your desktop, watches your workflow, and executes your intent instantly.",
"main": "./out/main/index.js",
"author": "Harsh Pandey",
"homepage": "https://irisaiw.vercel.app",
"scripts": {
"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-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "node -e \"try { require('child_process').execSync('electron-builder install-app-deps', { stdio: 'pipe' }); } catch (e) { console.warn('Warning: electron-builder install-app-deps failed to rebuild native modules (likely due to spaces in the path or missing python tools). Bypassing...'); }\"",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@google-cloud/local-auth": "^3.0.1",
"@google/genai": "^2.8.0",
"@gsap/react": "^2.1.2",
"@huggingface/inference": "^4.13.18",
"@monaco-editor/react": "^4.7.0",
"@notionhq/client": "^5.22.0",
"@nut-tree-fork/nut-js": "^4.2.6",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@tavily/core": "^0.7.6",
"@xenova/transformers": "^2.17.2",
"axios": "^1.17.0",
"bcryptjs": "^3.0.3",
"cheerio": "^1.2.0",
"clipboardy": "^2.3.0",
"decibri": "^3.4.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.8.9",
"face-api.js": "^0.22.2",
"framer-motion": "^12.40.0",
"glob": "^13.0.6",
"googleapis": "^173.0.0",
"groq-sdk": "^1.2.1",
"gsap": "^3.15.0",
"ignore": "^7.0.5",
"immer": "^11.1.8",
"leaflet": "^1.9.4",
"loudness": "^0.4.2",
"lucide-react": "^1.17.0",
"mammoth": "^1.12.0",
"node-window-manager": "^2.2.4",
"pdf-parse": "^2.4.5",
"prismjs": "^1.30.0",
"puppeteer": "^25.1.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"qrcode.react": "^4.2.0",
"react-icons": "^5.6.0",
"react-leaflet": "^5.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.17.0",
"react-tooltip": "^6.0.7",
"reactflow": "^11.11.4",
"recharts": "^3.8.1",
"remark-gfm": "^4.0.1",
"screenshot-desktop": "^1.15.4",
"tesseract.js": "^7.0.0",
"three": "^0.184.0",
"untun": "^0.1.3",
"vectordb": "^0.21.2",
"vosk-koffi": "^1.1.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.7",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^30.5.1",
"electron-builder": "^25.1.7",
"electron-rebuild": "^3.2.9",
"electron-vite": "^5.0.0",
"eslint": "^9.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^4.3.1",
"typescript": "^5.3.3",
"vite": "^7.3.5"
},
"allowScripts": {
"koffi@2.16.2": true,
"vosk-koffi@1.1.1": true
}
}