Files
toon/packages/toon/package.json
Johann Schopplich 2e7a27c3c0 chore: upgrade tsdown
2025-11-11 09:31:17 +01:00

44 lines
964 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "@toon-format/toon",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.21.0",
"description": "Token-Oriented Object Notation (TOON) A compact, deterministic JSON format for LLM prompts",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
"homepage": "https://toonformat.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/toon-format/toon.git"
},
"bugs": {
"url": "https://github.com/toon-format/toon/issues"
},
"keywords": [
"toon",
"format",
"specification",
"llm",
"token-efficiency",
"data-format"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"test": "vitest"
},
"devDependencies": {
"@toon-format/spec": "^2.0.0"
}
}