Files
stanza/package.json
T
jake ea7fe48d00 chore: tighten changeset config, add stanza-cli bin alias, and sync docs
- Set `disableThanks`, `prettier: false`, `privatePackages: { version: false, tag: false }`, and `updateInternalDependents: "always"` in `.changeset/config.json`; simplify the release workflow by dropping `NPM_TOKEN` and `NPM_CONFIG_PROVENANCE` from the CI env and switching to `vp run version`
- Add `stanza-cli` as a second bin entry in `publishConfig` alongside `stanza` so the package is callable by either name; reset the CLI package version to `0.0.0` so changesets drive versioning from a clean baseline
- Update docs throughout to reflect the `doctor` command surface (CLI reference, agents guide, telemetry list), the main-file registry URL convention (`registries` entries now point at the full `index.json` URL, not a directory), and the `STANZA_REGISTRY` env var description
2026-05-30 13:59:46 -04:00

34 lines
986 B
JSON

{
"name": "stanza",
"version": "0.0.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",
"version": "vp exec changeset version",
"release": "vp run build:cli && vp exec 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.34.1"
}