zon-format
Version:
ZON: The most token-efficient serialization format for LLMs - beats CSV, TOON, JSON, and all competitors
82 lines (81 loc) • 2.34 kB
JSON
{
"name": "zon-format",
"version": "1.3.0",
"description": "ZON: The most token-efficient serialization format for LLMs - beats CSV, TOON, JSON, and all competitors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"zon": "dist/cli.js"
},
"browser": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./langchain": "./dist/langchain.js",
"./ai-sdk": "./dist/ai-sdk.js",
"./openai": "./dist/openai.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"generate:examples": "npx ts-node scripts/generate_mode_examples.ts",
"benchmark": "node benchmarks/scripts/run.js",
"benchmark:comprehensive": "node benchmarks/scripts/comprehensive-benchmark.js",
"benchmark:accuracy": "node benchmarks/scripts/retrieval-accuracy.js",
"eval:smoke": "node benchmarks/scripts/smoke-eval.js",
"eval:full": "node benchmarks/scripts/retrieval-accuracy.js",
"eval:check-regressions": "node benchmarks/scripts/check-regressions.js",
"eval:baseline": "node benchmarks/scripts/save-baseline.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"zon",
"serialization",
"llm",
"compression",
"token-efficiency",
"data-format",
"json-alternative",
"toon",
"token-efficient"
],
"author": "Roni Bhakta <ronibhakta1@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ZON-Format/zon-TS.git"
},
"homepage": "https://github.com/ZON-Format/zon-TS",
"bugs": {
"url": "https://github.com/ZON-Format/zon-TS/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"@langchain/core": "^1.1.0",
"@toon-format/toon": "^2.0.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/msgpack-lite": "^0.1.12",
"@types/node": "^24.10.1",
"ai": "^5.0.104",
"fast-xml-parser": "^5.3.2",
"gpt-tokenizer": "^3.4.0",
"jest": "^30.2.0",
"js-yaml": "^4.1.1",
"llama-tokenizer-js": "^1.2.2",
"msgpack-lite": "^0.1.26",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@azure/openai": "^2.0.0",
"dotenv": "^17.2.3",
"openai": "^6.9.1",
"tson": "^0.0.10"
}
}