27 lines
578 B
JSON
27 lines
578 B
JSON
{
|
|
"name": "@gregorlohaus/tdir",
|
|
"version": "0.1.2",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "bun build ./index.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"
|
|
}
|
|
}
|