Files
tdir/package.json
Gregor Lohaus e16fc8b482
All checks were successful
Publish npm package / publish (push) Successful in 26s
verison bump, new files need to include var tokens
2026-05-24 15:05:22 +02:00

30 lines
631 B
JSON

{
"name": "@gregorlohaus/tdir",
"version": "0.1.7",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tdir": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"scripts": {
"build": "bun build ./index.ts ./cli.ts --outdir ./dist --target node --external zod && bunx tsc --project tsconfig.build.json",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"typescript": "^5"
},
"peerDependencies": {
"zod": "^4"
}
}