-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1007 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1007 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
46
{
"name": "tokenfirewall",
"version": "2.0.1",
"description": "Scalable, adapter-driven LLM cost enforcement middleware for Node.js with model discovery and context intelligence",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"llm",
"cost",
"budget",
"openai",
"anthropic",
"gemini",
"grok",
"middleware",
"token-tracking",
"cost-control",
"model-discovery"
],
"author": "Ruthwik",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Ruthwik000/tokenfirewall.git"
},
"bugs": {
"url": "https://github.com/Ruthwik000/tokenfirewall/issues"
},
"homepage": "https://github.com/Ruthwik000/tokenfirewall#readme",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
}
}