mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"name": "stanza-cli",
|
|
"version": "0.3.0",
|
|
"description": "Modular monorepo template CLI — shadcn for stacks.",
|
|
"keywords": [
|
|
"boilerplate",
|
|
"cli",
|
|
"monorepo",
|
|
"scaffold",
|
|
"shadcn",
|
|
"template"
|
|
],
|
|
"homepage": "https://stanza.tools",
|
|
"bugs": "https://github.com/jakejarvis/stanza/issues",
|
|
"license": "MIT",
|
|
"author": "Jake Jarvis <jake@jarv.is>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jakejarvis/stanza.git",
|
|
"directory": "apps/cli"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"publishConfig": {
|
|
"bin": {
|
|
"stanza": "./dist/bin.mjs",
|
|
"stanza-cli": "./dist/bin.mjs"
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "vp pack"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^1.5.1",
|
|
"citty": "^0.2.2",
|
|
"handlebars": "^4.7.9",
|
|
"jsonc-parser": "^3.3.1",
|
|
"picocolors": "^1.1.1",
|
|
"semver": "^7.8.4",
|
|
"ts-morph": "^28.0.0",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"@types/semver": "^7.7.1",
|
|
"@withstanza/codemods": "workspace:*",
|
|
"@withstanza/registry": "workspace:*",
|
|
"@withstanza/schema": "workspace:*",
|
|
"@withstanza/utils": "workspace:*",
|
|
"typescript": "catalog:",
|
|
"vite-plus": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|