UNPKG

vibe-cli-tool

Version:

VibeCLI v1.9 - 模板商店生态,智能部署生成,多语言支持,交互式学习系统,企业级Web全栈应用CLI工具

130 lines (129 loc) 3.72 kB
{ "name": "vibe-cli-tool", "version": "1.9.1", "description": "VibeCLI v1.9 - 模板商店生态,智能部署生成,多语言支持,交互式学习系统,企业级Web全栈应用CLI工具", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "vibecli": "dist/cli.js", "vibecli-mcp-server": "dist/mcp/mcp-server.js" }, "scripts": { "build": "tsc && cp -r src/mcp/config/defaults dist/mcp/config/", "dev": "tsc --watch", "prepublishOnly": "npm run build", "test": "jest --passWithNoTests", "test:watch": "jest --watch", "test:coverage": "jest --coverage --maxWorkers=2", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "clean": "rm -rf dist", "mcp:server": "node dist/mcp-server.js", "mcp:dev": "tsc && npm run mcp:server", "version:patch": "npm version patch && npm run build", "version:minor": "npm version minor && npm run build", "version:major": "npm version major && npm run build", "release:patch": "npm run version:patch && npm publish && git push --follow-tags", "release:minor": "npm run version:minor && npm publish && git push --follow-tags", "release:major": "npm run version:major && npm publish && git push --follow-tags", "template:index": "ts-node --esm --transpile-only scripts/generate-template-index.ts" }, "keywords": [ "web", "nextjs", "fullstack", "cli", "generator", "typescript", "prisma", "tailwind", "react", "javascript", "framework", "template", "scaffold", "ai", "mcp", "intelligent", "decision-engine", "project-analysis", "tech-stack", "architecture" ], "author": { "name": "VibeCLI Team", "email": "support@vibecli.com", "url": "https://github.com/vibecli" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/vibetemplate/vibecli.git" }, "bugs": { "url": "https://github.com/vibetemplate/vibecli/issues" }, "homepage": "https://github.com/vibetemplate/vibecli#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.13.2", "@prisma/client": "^5.22.0", "autoprefixer": "^10.4.21", "chalk": "^5.3.0", "commander": "^11.1.0", "execa": "^8.0.1", "fs-extra": "^11.2.0", "inquirer": "^9.2.12", "mustache": "^4.2.0", "ora": "^7.0.1", "postcss": "^8.5.6", "prisma": "^5.22.0", "semver": "^7.5.4", "tailwindcss": "^3.4.17", "uuid": "^9.0.0", "@types/uuid": "^9.0.7", "tweetnacl": "^1.0.3", "tweetnacl-util": "^0.15.1", "adm-zip": "^0.5.10", "validate-npm-package-name": "^5.0.0", "zod": "^3.25.67" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.8", "@types/mustache": "^4.2.5", "@types/node": "^20.10.0", "@types/semver": "^7.5.6", "@types/validate-npm-package-name": "^4.0.2", "@typescript-eslint/eslint-plugin": "^6.13.1", "@typescript-eslint/parser": "^6.13.1", "eslint": "^8.54.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.1", "@types/adm-zip": "^0.5.1", "ts-node": "^10.9.2", "jest": "^29.7.0", "prettier": "^3.1.0", "ts-jest": "^29.1.1", "typescript": "^5.3.2" }, "files": [ "dist/**/*", "templates/**/*", "docs/**/*", "README.md", "LICENSE.md", "ARCHITECTURE.md", "API.md" ], "engines": { "node": ">=18.17.0", "npm": ">=9.0.0" }, "publishConfig": { "access": "public" } }