@zenoaihq/tson
Version:
Token-efficient Structured Object Notation – a compact serialization format designed for efficient data exchange with LLMs
77 lines (76 loc) • 1.94 kB
JSON
{
"name": "@zenoaihq/tson",
"version": "1.0.0",
"description": "Token-efficient Structured Object Notation – a compact serialization format designed for efficient data exchange with LLMs",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "npm run build && npm run test && npm run typecheck"
},
"keywords": [
"tson",
"serialization",
"llm",
"tokens",
"json",
"compact",
"token-efficient",
"ai",
"language-models",
"data-format"
],
"author": "Zeno AI <support@zenoai.tech> (https://zenoai.tech)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zenoaihq/tson.git",
"directory": "javascript"
},
"bugs": {
"url": "https://github.com/zenoaihq/tson/issues"
},
"homepage": "https://github.com/zenoaihq/tson#readme",
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
}
}