-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 970 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 970 Bytes
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
{
"name": "opencode-web",
"private": true,
"type": "module",
"version": "0.12.0",
"description": "A better web UI for opencode: chat, projects, MCP apps & UI. Traefik/tinyauth friendly.",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --host=0.0.0.0 --port=3011",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"mock": "node scripts/mock-opencode.mjs"
},
"dependencies": {
"@nuxt/ui": "^4.10.0",
"isomorphic-dompurify": "^3.22.0",
"marked": "^18.0.9",
"nuxt": "^4.5.2",
"tailwindcss": "^4.1.0"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.123",
"@playwright/test": "^1.62.1",
"@types/node": "^26.2.0",
"typescript": "^5.9.0",
"vitest": "^4.1.10",
"vue-tsc": "^3.0.0"
}
}