forked from DreamLab-AI/VisionClaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "agentbox",
"version": "0.1.0",
"description": "agentbox manifest validator and CLI tools",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"validate": "node scripts/agentbox-config-validate.js",
"test:config": "jest tests/config/semantic-rules.test.js --testEnvironment node",
"test:vault": "node --test mcp/servers/lib/__tests__/*.test.js",
"test:orchestration-proxy": "node mcp/servers/lib/orchestration-proxy.test.js",
"test:web": "bash scripts/test-web-interfaces.sh"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/tests/config"
],
"testMatch": [
"**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/",
"/management-api/"
],
"modulePathIgnorePatterns": [
"<rootDir>/management-api/"
]
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"devDependencies": {
"better-sqlite3": "^12.11.1",
"jest": "^29.7.0",
"portfinder": "^1.0.38",
"ws": "^8.21.1"
}
}