Files
stanza/package.json
T
jake 3028165da4 fix: polish copy, remove homepage icon from module cards, and tighten footer/link styles
- Drop `IconHome` anchor from `ModuleCard` header; only the `IconInfoCircle` details link remains (opacity toned down to `text-foreground/40`)
- Reword error messages (`describeError`), empty-state strings, route-boundary messages, and stats page copy for clarity and consistency
- Replace `rel="noreferrer"` with `rel="noopener noreferrer"` across header, footer, detail page, and stats
- Add external-link icon to footer GitHub anchor; add `hover:text-foreground` to footer nav links
- Fix `PreviewBlock` top spacing (`mt-4` moved to `pt-4` on the wrapper so the border-top sits flush)
- Add "audit the code" link to stats telemetry opt-out blurb pointing at the telemetry source file
2026-05-26 18:03:03 -04:00

33 lines
934 B
JSON

{
"name": "stanza",
"version": "0.1.0",
"private": true,
"description": "Modular monorepo template CLI — shadcn for stacks.",
"license": "MIT",
"author": "Jake Jarvis <jakejarvis@gmail.com>",
"type": "module",
"scripts": {
"build": "vp run -r build",
"build:cli": "vp run stanza-cli#build && vp run create-stanza#build",
"build:web": "vp run @stanza/web#build",
"dev": "vp run -r dev",
"test": "vp test",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"changeset": "vp exec changeset",
"release": "vp run build:cli && changeset publish",
"prepare": "vp config"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.9.1",
"jiti": "^2.7.0",
"typescript": "^6.0.3",
"vite-plus": "catalog:"
},
"packageManager": "pnpm@10.33.4"
}