-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "remoai",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "dist/desktop/main.js",
"description": "RemoAI Agents Desktop App",
"author": {
"name": "RemoAI"
},
"scripts": {
"dev:web": "vite",
"dev:desktop": "concurrently \"cross-env NODE_ENV=development vite\" \"wait-on tcp:5173 && tsc -p desktop/tsconfig.json && cross-env NODE_ENV=development electron .\"",
"build:web": "tsc -b && vite build",
"generate-certs": "node scripts/generate-certs.js",
"copy-certs": "node scripts/copy-certs.js",
"build:desktop": "npm run generate-certs && NODE_OPTIONS='--max-old-space-size=8192' npm run build:web && tsc -p desktop/tsconfig.json && npm run copy-certs && electron-builder",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@privy-io/react-auth": "^2.16.0",
"@tailwindcss/vite": "^4.1.7",
"@types/uuid": "^10.0.0",
"framer-motion": "^12.23.0",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.1.0",
"lucide-react": "^0.511.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.5.2",
"react-icons": "^5.5.0",
"react-router-dom": "^7.6.1",
"react-scroll": "^1.9.3",
"selfsigned": "^2.1.1",
"swiper": "^11.2.8",
"tailwindcss": "^4.1.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/express": "^5.0.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/react-scroll": "^1.8.10",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"express": "^5.1.0",
"globals": "^16.0.0",
"mkcert": "^3.2.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"wait-on": "^7.2.0"
}
}