-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.97 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
{
"name": "@iterate/agentone-token-compression",
"version": "1.1.9",
"description": "AgentOne Token Compression by Iterate.ai. One npm install gives you 40–90% token savings in Claude Code, Claude CLI, and Claude Desktop. Compresses tool outputs, prompts, file reads, and conversation context. Mask-union architecture protects API keys, UUIDs, and high-entropy content by construction.",
"keywords": [
"agentone",
"iterate-ai",
"claude-code",
"claude-cli",
"claude-desktop",
"claude-plugin",
"mcp",
"model-context-protocol",
"token-optimization",
"compression",
"cost-savings",
"context-management",
"semantic-cache"
],
"homepage": "https://iterate.ai/agentone",
"repository": {
"type": "git",
"url": "https://github.com/IterateAI/compression"
},
"bugs": {
"url": "https://github.com/IterateAI/compression/issues"
},
"license": "LicenseRef-Iterate-AgentOne",
"author": "Iterate.ai",
"main": "./cli/agentone-tc.js",
"bin": {
"agentone-tc": "./cli/agentone-tc.js",
"agentone-token-compression": "./cli/agentone-tc.js"
},
"files": [
"cli/",
"hooks/",
"mcp-server/",
"scripts/",
"commands/",
"skills/",
"lib/",
"examples/",
"settings.json",
"plugin.json",
"README.md",
"INSTALL.md",
"INSTALL_DESKTOP.md",
"DISTRIBUTION.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.js",
"benchmark": "node test/benchmark.js",
"build": "node build/build.js",
"build:minify": "node build/build.js --minify",
"build:protect": "node build/build.js --protect",
"mcp": "node dist/mcp-server/index.js",
"prepublishOnly": "npm test"
},
"dependencies": {
"@iterate/token-optimizer": "file:../nodejs_optimizer"
},
"devDependencies": {
"esbuild": "^0.24.2",
"javascript-obfuscator": "^5.4.7"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}