Files
stanza/packages/internal/package.json
T
jake 0fcc225d85 feat: consolidate maintenance scripts into packages/internal and add module:new scaffolder
- rename `packages/registry-build` → `packages/internal` to serve as a single home for internal tooling
- add `module-new.ts`: interactive CLI (powered by `@clack/prompts`) that scaffolds a new first-party module under `registry/modules/<slot>-<id>/` with `module.ts`, `package.json`, `tsconfig.json`, `templates/.gitkeep`, and an optional `codemods/index.ts` stub
- expose `pnpm module:new [slot] [id]` at the repo root and update `registry:build` turbo filter to `@stanza/internal`
2026-05-20 12:12:59 -04:00

25 lines
599 B
JSON

{
"name": "@stanza/internal",
"version": "0.1.0",
"private": true,
"description": "Internal maintenance scripts for the stanza monorepo.",
"license": "MIT",
"type": "module",
"scripts": {
"registry:build": "bun run ./src/registry-build.ts",
"module:new": "bun run ./src/module-new.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"@stanza/registry": "workspace:*",
"kleur": "^4.1.5",
"mri": "^1.2.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"typescript": "^6.0.3"
}
}