create-rv-cli
Version:
## 简介 ---- 可用于自动化创建 vue 和 react 工程的命令工具
69 lines (68 loc) • 1.5 kB
JSON
{
"name": "create-rv-cli",
"version": "1.0.3",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"homepage": "https://gitee.com/my_domain/create-rv-cli",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"create-rv": "./dist/index.mjs",
"create-rv-cjs": "./dist/index.js"
},
"scripts": {
"test": "node ./dist/index.mjs project my-test",
"clean": "tsToJs clean",
"build:js": "tsToJs build",
"build": "yarn clean && yarn build:js"
},
"keywords": [
"create-rv",
"create-rv-cli",
"rv-cli",
"rv",
"cli",
"vue",
"react"
],
"repository": {
"type": "git",
"url": "https://gitee.com/my_domain/create-rv-cli.git"
},
"files": [
"dist",
"package.json",
"README.md",
"README.ch.md"
],
"dependencies": {
"chalk": "^4.1.0",
"commander": "^9.5.0",
"cross-spawn": "^7.0.3",
"envinfo": "^7.8.1",
"fs-extra": "^10.1.0",
"node-fetch": "^2.6.7",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"semver": "^7.5.2",
"tmp": "^0.2.1",
"validate-npm-package-name": "^4.0.0"
},
"engines": {
"node": ">= 12.18"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/node-fetch": "^2.6.4",
"@types/prompts": "^2.4.5",
"@types/semver": "^7.5.3",
"@types/validate-npm-package-name": "^4.0.0",
"@wz-libs/ts-to-js": "^1.1.0"
}
}