-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
executable file
·68 lines (68 loc) · 2.05 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
{
"name": "vertex-agent",
"description": "AI agent running purely in the browser",
"private": true,
"version": "0.0.12",
"type": "module",
"bin": {
"vertex-sandbox": "./bin/vertex-sandbox.js",
"vertex-agent-server": "./bin/vertex-sandbox.js"
},
"files": [
"bin/",
"server/",
"README.md",
"LICENSE.md"
],
"scripts": {
"dev": "concurrently \"node server/agent.js\" \"vite\"",
"dev:agent": "node server/agent.js",
"dev:front": "vite",
"build": "vite build",
"build:pages": "cross-env VITE_BASE=/VertexAgent/ vite build",
"lint": "eslint .",
"test:sync": "node --test src/sync/*.test.js",
"preview": "vite preview",
"build:docker": "docker buildx build --platform linux/amd64,linux/arm64 -t backsapce/vertex-agent:$(node -p \"require('./package.json').version\") --push ."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1045.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.3",
"@codemirror/theme-one-dark": "^6.1.3",
"@uiw/react-codemirror": "^4.25.9",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"buffer": "^6.0.3",
"e2b": "^2.19.0",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"tokenlens": "^1.3.1",
"yjs": "^13.6.30"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"vite": "^8.0.4"
}
}