mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "create-vant-cli-app",
|
|
"version": "2.0.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": "pnpm build & release-it",
|
|
"prepare": "pnpm build"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"generators"
|
|
],
|
|
"keywords": [
|
|
"vant"
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/youzan/vant.git",
|
|
"directory": "packages/create-vant-cli-app"
|
|
},
|
|
"bugs": "https://github.com/youzan/vant/issues",
|
|
"author": "chenjiahan",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/inquirer": "^8.1.3",
|
|
"release-it": "^15.1.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"consola": "^2.11.3",
|
|
"fast-glob": "^3.2.4",
|
|
"fs-extra": "^10.0.0",
|
|
"inquirer": "^8.0.0",
|
|
"picocolors": "^1.0.0"
|
|
},
|
|
"release-it": {
|
|
"git": {
|
|
"tag": false,
|
|
"commitMessage": "release: create-vant-cli-app ${version}"
|
|
}
|
|
}
|
|
}
|