codegen/package.json
Dylan Pizzo bd1ef4a08c wip
2025-02-24 22:52:14 -08:00

37 lines
771 B
JSON

{
"name": "@dylanpizzo/codegen",
"version": "0.1.0",
"type": "module",
"description": "Codegen utility",
"main": "./dist/index.js",
"files": [
"./dist"
],
"bin": {
"codegen": "./dist/bin/codegen.js"
},
"publishConfig": {
"registry": "https://npm.dylanpizzo.dev"
},
"scripts": {
"dev-watch": "tsx scripts/watch.ts",
"prod-build": "tsc && tsx scripts/build.ts",
"prepublishOnly": "npm run prod-build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.playbox.link/dylan/firebox-tsutil.git"
},
"author": "",
"license": "UNLICENSED",
"dependencies": {
"tsx": "^4.19.3"
},
"devDependencies": {
"@types/node": "^22.13.5",
"esbuild": "^0.19.2",
"typescript": "^5.2.2"
}
}