-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.27 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.27 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
{
"name": "baudbot",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "vitest run --config vitest.config.mjs",
"test:js": "vitest run --config vitest.config.mjs pi/extensions/heartbeat.test.mjs pi/extensions/agent-spawn.test.mjs pi/extensions/subagent-manager.test.mjs pi/extensions/subagent-util.test.mjs pi/extensions/memory.test.mjs test/legacy-node-tests.test.mjs test/broker-bridge.integration.test.mjs test/integrity-status-check.test.mjs",
"test:shell": "vitest run --config vitest.config.mjs test/shell-scripts.test.mjs test/security-audit.test.mjs",
"test:coverage": "vitest run --config vitest.config.mjs --coverage pi/extensions/heartbeat.test.mjs pi/extensions/memory.test.mjs test/legacy-node-tests.test.mjs",
"lint": "npm run lint:js && npm run lint:shell",
"lint:js": "biome lint",
"lint:shell": "bash bin/lint-shell.sh",
"lint:fix": "biome lint --write --unsafe",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.1",
"@mariozechner/pi-coding-agent": "^0.52.12",
"@onkernel/sdk": "^0.33.0",
"@sinclair/typebox": "^0.34.48",
"@vitest/coverage-v8": "^4.0.18",
"agentmail": "^0.2.15",
"libsodium-wrappers-sumo": "^0.8.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}