-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 922 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 922 Bytes
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
{
"name": "clawprobe",
"version": "1.3.0",
"description": "The missing observability layer for OpenClaw agents",
"keywords": [
"openclaw",
"ai-agent",
"context",
"observability",
"llm"
],
"license": "MIT",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": {
"clawprobe": "dist/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "tsx --test test/**/*.test.ts",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"cli-table3": "^0.6.4",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}