mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"name": "stanza-cli",
|
|
"version": "0.1.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": {
|
|
"access": "public",
|
|
"bin": {
|
|
"stanza": "./dist/bin.mjs"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts"
|
|
},
|
|
"scripts": {
|
|
"build": "vp pack"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^1.4.0",
|
|
"citty": "^0.2.2",
|
|
"picocolors": "^1.1.1",
|
|
"semver": "^7.8.1",
|
|
"ts-morph": "^28.0.0",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@stanza/codemods": "workspace:*",
|
|
"@stanza/registry": "workspace:*",
|
|
"@types/node": "^25.9.1",
|
|
"@types/semver": "^7.7.1",
|
|
"typescript": "^6.0.3",
|
|
"vite-plus": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|