-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.84 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
{
"name": "@wigtoken-temp/wigtoken",
"version": "0.3.3",
"description": "Self-host aggregator for Claude Code token usage. Watches transcripts and exposes a real-time SSE counter, a Prometheus /metrics endpoint, and an authenticated ingestion API for distributed agents.",
"type": "module",
"license": "MIT",
"author": "wigtn",
"homepage": "https://github.com/wigtn/wigtoken#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wigtn/wigtoken.git"
},
"bugs": {
"url": "https://github.com/wigtn/wigtoken/issues"
},
"keywords": [
"claude-code",
"claude",
"anthropic",
"token-usage",
"telemetry",
"prometheus",
"self-hosted",
"observability"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"wigtoken": "./dist/cli.js"
},
"files": [
"dist",
"public",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsup",
"build:web": "cd web && npm ci && npm run build",
"build:all": "npm run build && npm run build:web",
"prepublishOnly": "npm run build:all",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"better-sqlite3": "^11.7.0",
"chokidar": "^4.0.3",
"drizzle-orm": "^0.38.3",
"hono": "^4.6.14"
},
"optionalDependencies": {
"mysql2": "^3.12.0",
"postgres": "^3.4.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^20.17.10",
"drizzle-kit": "^0.30.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}