test02/node_modules/@vuepress/cli/package.json
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00

67 lines
1.3 KiB
JSON

{
"name": "@vuepress/cli",
"version": "2.0.0-rc.14",
"description": "CLI package of VuePress",
"keywords": [
"vuepress",
"cli"
],
"homepage": "https://github.com/vuepress",
"bugs": {
"url": "https://github.com/vuepress/core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuepress/core.git"
},
"license": "MIT",
"author": "meteorlxy",
"type": "module",
"exports": {
".": "./dist/index.js",
"./bin": "./dist/vuepress.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vuepress-cli": "./bin/vuepress.js"
},
"files": [
"bin",
"dist"
],
"dependencies": {
"cac": "^6.7.14",
"chokidar": "^3.6.0",
"envinfo": "^7.13.0",
"esbuild": "~0.21.5",
"@vuepress/core": "2.0.0-rc.14",
"@vuepress/utils": "2.0.0-rc.14",
"@vuepress/shared": "2.0.0-rc.14"
},
"devDependencies": {
"@types/envinfo": "^7.8.4"
},
"publishConfig": {
"access": "public"
},
"tsup": {
"clean": true,
"dts": "./src/index.ts",
"entry": [
"./src/index.ts"
],
"format": [
"esm"
],
"outDir": "./dist",
"sourcemap": false,
"target": "es2022",
"tsconfig": "../../tsconfig.dts.json"
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist"
}
}