Files
stanza/packages/create-stanza/package.json
T
2026-05-20 11:52:53 -04:00

27 lines
570 B
JSON

{
"name": "create-stanza",
"version": "0.1.0",
"description": "`pnpm create stanza` — the canonical entry point to the stanza wizard.",
"license": "MIT",
"bin": {
"create-stanza": "./src/bin.ts"
},
"files": [
"src",
"dist"
],
"type": "module",
"scripts": {
"build": "bun build ./src/bin.ts --target=bun --outdir=./dist --minify",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@stanza/cli": "workspace:*",
"mri": "^1.2.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^6.0.3"
}
}