-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 877 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 877 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
{
"name": "tokencut",
"version": "0.1.1",
"description": "Measure and cut the token cost of your LLM and agent message payloads.",
"type": "module",
"bin": {
"tokencut": "bin/tokencut.mjs"
},
"exports": "./src/index.mjs",
"files": [
"src",
"bin",
"README.md"
],
"scripts": {
"test": "node --test"
},
"keywords": [
"llm",
"tokens",
"context",
"context-engineering",
"agents",
"anthropic",
"openai",
"claude",
"cost",
"token-optimization"
],
"author": "Royal Simpson Pinto",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentPostmortem/tokencut.git"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/AgentPostmortem/tokencut/issues"
},
"homepage": "https://github.com/AgentPostmortem/tokencut#readme"
}