-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.28 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.28 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "deepclaw-openclaw",
"version": "0.1.3",
"license": "MIT",
"description": "DeepClaw observability plugin for OpenClaw — real-time LLM usage, token, cache, reasoning, and cost telemetry.",
"repository": {
"type": "git",
"url": "git+https://github.com/Digitizers/deepclaw-openclaw.git"
},
"homepage": "https://github.com/Digitizers/deepclaw-openclaw#readme",
"bugs": {
"url": "https://github.com/Digitizers/deepclaw-openclaw/issues"
},
"author": "Ben Kalsky <ben@digitizer.co.il> (https://digitizer.co.il)",
"type": "module",
"engines": {
"node": ">=22.12.0",
"npm": ">=10"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"smoke": "vitest run src/**/*.test.ts",
"check:clawhub": "node scripts/check-clawhub-version.mjs",
"ci": "npm run typecheck && npm test && npm run build && npm pack --dry-run",
"prepack": "npm run typecheck && npm test && npm run build"
},
"keywords": [
"ai-gateway",
"ai-observability",
"analytics",
"cache-tokens",
"cost-tracking",
"deepclaw",
"llm-analytics",
"llm-costs",
"llm-observability",
"monitoring",
"openclaw",
"openclaw-extension",
"openclaw-plugin",
"reasoning-tokens",
"token-usage"
],
"dependencies": {},
"peerDependencies": {
"openclaw": ">=2026.3.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.4.0",
"vitest": "^4.1.5",
"openclaw": "^2026.4.24"
},
"files": [
"dist/**",
"index.ts",
"src/config.ts",
"src/pricing.ts",
"src/service.ts",
"openclaw.plugin.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md",
"SKILL.md"
],
"openclaw": {
"type": "plugin",
"category": "observability",
"compat": {
"pluginApi": ">=2026.3.2",
"minGatewayVersion": "2026.3.2"
},
"build": {
"openclawVersion": "2026.5.6"
},
"tags": [
"deepclaw",
"cost-tracking",
"tokens",
"llm-observability",
"monitoring"
],
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
]
},
"publishConfig": {
"access": "public"
}
}