mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
- 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`
25 lines
599 B
JSON
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"
|
|
}
|
|
}
|