mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
27 lines
570 B
JSON
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"
|
|
}
|
|
}
|