forked from postwoman/forTeam
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@devui/cli",
|
|
"version": "0.0.1",
|
|
"description": "Cli of devui",
|
|
"keywords": [
|
|
"cli",
|
|
"devui",
|
|
"devui-cli"
|
|
],
|
|
"author": "iel",
|
|
"homepage": "https://gitee.com/devui/vue-devui/tree/dev/packages/devui-vue/devui-cli#README.md",
|
|
"license": "MIT",
|
|
"main": "lib/bin.js",
|
|
"types": "types/bin.d.ts",
|
|
"bin": {
|
|
"dc": "lib/bin.js"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"types"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitee.com/RootWater/vue-devui.git"
|
|
},
|
|
"scripts": {
|
|
"dev": "esbuild --bundle ./src/bin.ts --format=cjs --platform=node --outfile=./lib/bin.js --external:esbuild --minify-whitespace --watch",
|
|
"build": "npm run build:lib & npm run build:dts",
|
|
"build:lib": "rimraf ./lib && esbuild --bundle ./src/bin.ts --format=cjs --platform=node --outfile=./lib/bin.js --external:esbuild --minify-whitespace",
|
|
"build:dts": "rimraf ./types && tsc -p ./tsconfig.json",
|
|
"cli": "node ./lib/bin.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/lodash-es": "^4.17.5",
|
|
"@types/node": "^16.11.6",
|
|
"@types/prompts": "^2.0.14",
|
|
"commander": "^8.3.0",
|
|
"fast-glob": "^3.2.7",
|
|
"fs-extra": "^10.0.0",
|
|
"kolorist": "^1.5.0",
|
|
"lodash-es": "^4.17.21",
|
|
"prompts": "^2.4.2",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"dependencies": {
|
|
"esbuild": "^0.13.12"
|
|
}
|
|
}
|