mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 19:16:00 -04:00
- 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
33 lines
934 B
JSON
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"
|
|
}
|