neverland e6a0694807
refactor(cli): rewrite release command (#12133)
* refactor(cli): rewrite release command

* fix: duplicated build

* fix: no git check

* feat: rollback version

* chore: release config

* chore: add release config
2023-07-30 10:43:26 +08:00

46 lines
987 B
JSON

{
"name": "create-vant-cli-app",
"version": "2.2.1",
"description": "Create Vant CLI App",
"main": "lib/index.js",
"bin": {
"create-vant-cli-app": "./lib/index.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "rimraf ./lib && tsc",
"release": "vant-cli release",
"prepare": "pnpm build"
},
"files": [
"lib",
"generators"
],
"keywords": [
"vant"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/vant-ui/vant.git",
"directory": "packages/create-vant-cli-app"
},
"bugs": "https://github.com/vant-ui/vant/issues",
"author": "chenjiahan",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"consola": "^3.0.2",
"fast-glob": "^3.2.11",
"fs-extra": "^11.1.0",
"enquirer": "2.3.6",
"picocolors": "^1.0.0"
}
}