Files
brick-cli/package.json
yangzhaohan 6b19fd4601
Publish to Gitea Registry / publish (push) Failing after 1m32s
feat(cli): add create command with interactive block selection
- register create command in Commander program
- add @inquirer/prompts dependency for interactive prompts
- extend Block type with optional repo field
- scaffold create command module with initial implementation
2026-06-22 17:19:10 +08:00

40 lines
831 B
JSON

{
"name": "brick-cli",
"version": "0.0.0",
"description": "Brick CLI — 源码级 Spring Boot 脚手架工具",
"type": "module",
"main": "dist/index.js",
"bin": {
"brick": "./dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://gitea.synoth.com/synoth/brick-cli.git"
},
"publishConfig": {
"registry": "https://gitea.synoth.com/api/packages/synoth/npm/"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"commander": "^15.0.0",
"js-yaml": "^5.0.0"
}
}