-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "toonify-mcp",
"version": "0.6.0",
"description": "Automatic token optimization for Claude Code and MCP workflows, including structured data and source code compression.",
"type": "module",
"main": "dist/index.js",
"bin": {
"toonify-mcp": "dist/index.js"
},
"files": [
"dist/",
".claude-plugin/",
"hooks/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"prepare": "npm run build",
"postinstall": "node -e \"console.log('\\\\n📦 Toonify MCP installed!\\\\n\\\\n✅ MCP Server: Ready (use with claude mcp add)\\\\n✅ Plugin: Ready (use with claude plugin add)\\\\n\\\\nSee README.md for installation instructions.\\\\n')\""
},
"keywords": [
"claude",
"claude-code",
"mcp",
"token-optimization",
"toonify",
"llm-optimization"
],
"author": "PCIRCLE AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PCIRCLE-AI/toonify-mcp.git"
},
"bugs": {
"url": "https://github.com/PCIRCLE-AI/toonify-mcp/issues"
},
"homepage": "https://toonify.pcircle.ai/",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@toon-format/toon": "^2.1.0",
"tiktoken": "^1.0.22",
"yaml": "^2.8.2"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@swc/core": "^1.15.10",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"jest": "^30.2.0",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}