codegen/package.json
Dylan Pizzo 5fb6acbb41 wip
2025-02-25 20:13:55 -08:00

36 lines
710 B
JSON

{
"name": "@dylanpizzo/codegen",
"version": "0.1.0",
"type": "module",
"description": "Codegen utility",
"main": "./dist/index.js",
"files": [
"./dist"
],
"bin": {
"codegen": "cat dist/bin/codegen.js"
},
"publishConfig": {
"registry": "https://npm.dylanpizzo.dev"
},
"scripts": {
"prod-build": "tsc",
"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"
}
}