-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.35 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
45
46
47
48
{
"name": "agentops-workbench",
"version": "3.1.0",
"private": true,
"type": "module",
"bin": {
"agentops": "./bin/agentops"
},
"files": [
"bin/",
"src/",
"templates/",
"fixtures/",
"scripts/generate-demo-artifacts.ts",
"docs/INSTALLATION.md",
"docs/CLI.md",
"docs/COMPATIBILITY.md",
"docs/CONFIGURATION.md",
"docs/DASHBOARD.md",
"docs/MCP.md",
"docs/QUALITY_GATES.md",
"docs/demo/",
"docs/CAPTURE_GUIDE.md",
"docs/EXPORT.md",
"docs/ADAPTER_STRATEGY.md",
"docs/EVENT_SCHEMA.md",
"agentops.config.example.json",
"CHANGELOG.md"
],
"scripts": {
"agentops": "bun ./src/cli.ts",
"typecheck": "tsc --noEmit",
"lint": "biome lint src/",
"build:binaries": "bun ./scripts/build-binaries.ts",
"scan:public": "./bin/agentops scan-publication",
"demo:artifacts": "bun ./scripts/generate-demo-artifacts.ts",
"smoke:demo-artifacts": "bun ./scripts/generate-demo-artifacts.ts --check",
"smoke:dashboard": "bun ./scripts/smoke-dashboard.ts",
"smoke:large-session": "bun ./scripts/smoke-large-session.ts",
"ci": "bun run typecheck && bun run lint && bun test && bun run smoke:demo-artifacts && bun run scan:public",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"typescript": "^5.9.0"
}
}