Files
tdir/package.json
Gregor Lohaus 452d872954
All checks were successful
Publish npm package / publish (push) Successful in 30s
meta, repo url in package.json
2026-05-26 09:28:05 +02:00

34 lines
729 B
JSON

{
"name": "@gregorlohaus/tdir",
"version": "0.2.1",
"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"
},
"repository": {
"type": "git",
"url": "https://gitea.gregorlohaus.com/gregor/tdir"
}
}