@aiwanna-team/repo-start
Version:
一个交互式的项目模板选择和初始化CLI工具
57 lines (56 loc) • 1.29 kB
JSON
{
"name": "@aiwanna-team/repo-start",
"version": "0.2.0",
"description": "一个交互式的项目模板选择和初始化CLI工具",
"main": "dist/index.js",
"type": "module",
"bin": {
"repo-start": "./dist/index.js",
"rs": "./dist/index.js"
},
"files": [
"dist",
"templates.json"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"type-check": "tsc --noEmit",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aiwanna-team/repo-start.git"
},
"keywords": [
"cli",
"template",
"generator",
"project-starter",
"interactive",
"typescript"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aiwanna-team/repo-start/issues"
},
"homepage": "https://github.com/aiwanna-team/repo-start#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^14.0.0",
"inquirer": "^9.2.0",
"ora": "^8.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^22.15.30",
"typescript": "^5.7.3",
"vite": "^6.3.5"
},
"engines": {
"node": ">=18.0.0"
}
}