Files
toon/package.json
Johann Schopplich f0f1166e20 chore: release v0.5.1
2025-10-30 08:35:38 +01:00

60 lines
1.4 KiB
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": "@byjohann/toon",
"type": "module",
"version": "0.5.1",
"packageManager": "pnpm@10.19.0",
"description": "Token-Oriented Object Notation a token-efficient JSON alternative for LLM prompts",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
"homepage": "https://github.com/johannschopplich/toon#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johannschopplich/toon.git"
},
"bugs": {
"url": "https://github.com/johannschopplich/toon/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"bin": {
"toon": "bin/toon.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"automd": "automd",
"build": "tsdown",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "tsc --noEmit",
"release": "bumpp"
},
"devDependencies": {
"@antfu/eslint-config": "^6.1.0",
"@types/node": "^24.9.1",
"automd": "^0.4.2",
"bumpp": "^10.3.1",
"eslint": "^9.38.0",
"gpt-tokenizer": "^3.2.0",
"tsdown": "^0.15.10",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild"
]
}
}