ccpool-server 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +52 -0
- package/dist/index.js +1838 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ccpool-server",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "Multi-tenant HTTP server for ccpool (Hono + libSQL) — the one path to the shared ledger. Self-host it to run your own group.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"claude",
|
|
8
|
+
"claude-code",
|
|
9
|
+
"ccpool",
|
|
10
|
+
"usage",
|
|
11
|
+
"quota",
|
|
12
|
+
"server",
|
|
13
|
+
"hono",
|
|
14
|
+
"libsql",
|
|
15
|
+
"turso",
|
|
16
|
+
"self-hosted"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "hexxt",
|
|
20
|
+
"homepage": "https://github.com/hexxt-git/ccpool#readme",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/hexxt-git/ccpool.git",
|
|
24
|
+
"directory": "apps/server"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/hexxt-git/ccpool/issues"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20"
|
|
31
|
+
},
|
|
32
|
+
"bin": {
|
|
33
|
+
"ccpool-server": "dist/index.js"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@hono/node-server": "^1.13.7",
|
|
43
|
+
"@libsql/client": "^0.14.0",
|
|
44
|
+
"hono": "^4.6.14"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^22.0.0",
|
|
48
|
+
"tsup": "^8.3.5",
|
|
49
|
+
"tsx": "^4.19.2",
|
|
50
|
+
"typescript": "^5.7.2",
|
|
51
|
+
"@ccpool/core": "0.0.1",
|
|
52
|
+
"@ccpool/storage-libsql": "0.0.1",
|
|
53
|
+
"@ccpool/daemon": "0.0.1"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "tsup",
|
|
57
|
+
"type-check": "tsc -p tsconfig.json --noEmit",
|
|
58
|
+
"lint": "eslint src",
|
|
59
|
+
"dev": "tsx watch --env-file=.env src/index.ts",
|
|
60
|
+
"start": "node dist/index.js"
|
|
61
|
+
}
|
|
62
|
+
}
|