learning_ai_common_plat/packages/create-app/package.json
saravanakumardb1 b6348fd4fe fix(security): harden npm publish — add .npmrc + publishConfig to all 57 packages
- Created .npmrc with @bytelyst scoped registry pointing to local Gitea
- Added publishConfig.registry to all 57 @bytelyst/* package.json files
- Created scripts/harden-publish-config.sh for future re-runs
- Prevents accidental publish to npmjs.org or corporate JFrog registry
2026-03-26 21:51:05 -07:00

28 lines
759 B
JSON

{
"name": "@bytelyst/create-app",
"version": "0.1.0",
"private": true,
"description": "CLI tools for scaffolding ByteLyst product repos and code",
"type": "module",
"bin": {
"create-app": "./dist/scaffolder.js",
"gen-api-route": "./dist/generators/api-routes.js",
"gen-agents-md": "./dist/generators/agents-md.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"create-app": "tsx src/scaffolder.ts",
"gen:api-route": "tsx src/generators/api-routes.ts",
"gen:agents-md": "tsx src/generators/agents-md.ts"
},
"devDependencies": {
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"publishConfig": {
"registry": "http://localhost:3300/api/packages/bytelyst/npm/"
}
}