forked from Swiftyos/AgentProbe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.31 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
{
"name": "agentprobe",
"private": true,
"type": "module",
"workspaces": [
"dashboard"
],
"scripts": {
"agentprobe": "bun run ./src/cli/main.ts",
"docs:index": "bun scripts/generate-index-docs.ts",
"docs:workspace": "bun scripts/generate-workspace-docs.ts",
"docs:quality": "bun scripts/refresh-quality-score.ts",
"docs:validate": "./scripts/validate-repo.sh",
"fast-feedback": "./scripts/fast-feedback.sh",
"ci": "bun run docs:validate && bun run lint && bun run typecheck && bun run test:coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "bun test --timeout 30000",
"test:coverage": "bun test --timeout 30000 --coverage",
"test:e2e": "bun test --timeout 30000 tests/e2e",
"typecheck": "bunx tsc --noEmit && bun run --cwd dashboard typecheck",
"dashboard:dev": "bun run --cwd dashboard dev",
"dashboard:build": "bun run --cwd dashboard build",
"validate:setup": "./scripts/validate-setup.sh"
},
"dependencies": {
"nunjucks": "^3.2.4",
"yaml": "^2.8.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/node": "^25.6.0",
"@types/nunjucks": "^3.2.6",
"bun-types": "^1.3.12",
"happy-dom": "^20.9.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^6.0.2"
}
}