-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.79 KB
/
package.json
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
{
"name": "llm-controlled-computer",
"version": "1.0.0",
"description": "A Next.js application that uses a large language model to control a computer",
"author": "Alex Wegener, lx-0",
"license": "ISC",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"reset": "rm -rf .next && rm -rf node_modules && npm ci",
"reset:full": "rm -rf .next && rm -rf node_modules && rm package-lock.json && npm cache clean --force && npm i",
"postinstall": "patch-package"
},
"dependencies": {
"@langchain/anthropic": "^0.1.1",
"@langchain/core": "^0.1.48",
"@langchain/openai": "^0.0.14",
"@novnc/novnc": "^1.5.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"dockerode": "^3.3.5",
"electron": "^24.3.0",
"langchain": "^0.1.21",
"lodash": "^4.17.21",
"lucide-react": "^0.453.0",
"next": "^15.0.1",
"node-pty": "^0.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.1.2",
"ssh2": "^1.11.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"xterm": "^5.1.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@types/dockerode": "^3.3.31",
"@types/electron": "^1.6.10",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.17.13",
"@types/node": "^20.2.5",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/ssh2": "^1.11.11",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"autoprefixer": "^10.4.14",
"electron-builder": "^23.6.0",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"patch-package": "^8.0.0",
"postcss": "^8.4.24",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.1.1",
"typescript": "^5.0.4"
}
}