mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
46 lines
984 B
JSON
46 lines
984 B
JSON
{
|
|
"name": "create-vant-cli-app",
|
|
"version": "3.0.0",
|
|
"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.4",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"rslog": "^1.2.3",
|
|
"fast-glob": "^3.3.2",
|
|
"fs-extra": "^11.2.0",
|
|
"enquirer": "2.4.1",
|
|
"picocolors": "^1.1.1"
|
|
}
|
|
}
|