-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "arcp-console",
"private": true,
"type": "module",
"description": "Web UI console for controlling and observing an ARCP (Agent Runtime Control Protocol) server.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/agentruntimecontrolprotocol/console.git"
},
"homepage": "https://github.com/agentruntimecontrolprotocol/console#readme",
"bugs": {
"url": "https://github.com/agentruntimecontrolprotocol/console/issues"
},
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"test": "vitest run",
"test:watch": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@agentruntimecontrolprotocol/sdk": "^1.0.2",
"@iconify-json/material-symbols": "^1.2.78",
"@nuxt/ui": "^4.8.0",
"nuxt": "^4.4.0"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@storybook-vue/nuxt": "9.0.1",
"@storybook/addon-themes": "9.1.2",
"@storybook/vue3": "9.1.2",
"storybook": "9.1.2",
"vitest": "^4.1.9"
}
}