Files
toon/packages/cli/package.json
Johann Schopplich da0a0b9be3 chore: release v0.7.0
2025-11-01 17:28:24 +01:00

42 lines
921 B
JSON

{
"name": "@toon-format/cli",
"type": "module",
"version": "0.7.0",
"packageManager": "pnpm@10.19.0",
"description": "CLI for encoding and decoding Token-Oriented Object Notation (TOON)",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
"homepage": "https://toonformat.dev",
"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": {
"dev": "tsx ./src/index.ts",
"build": "tsdown"
},
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.4.2",
"tokenx": "^1.2.0"
}
}