jccp_a/vuepress/node_modules/@vuepress/bundlerutils/package.json
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00

60 lines
1.2 KiB
JSON

{
"name": "@vuepress/bundlerutils",
"version": "2.0.0-rc.26",
"description": "Utils package of VuePress bundler",
"keywords": [
"bundler",
"vuepress",
"utils"
],
"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",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"vue": "^3.5.22",
"vue-router": "^4.6.0",
"@vuepress/client": "2.0.0-rc.26",
"@vuepress/shared": "2.0.0-rc.26",
"@vuepress/core": "2.0.0-rc.26",
"@vuepress/utils": "2.0.0-rc.26"
},
"publishConfig": {
"access": "public"
},
"tsup": {
"clean": true,
"dts": "./src/index.ts",
"entry": [
"./src/index.ts"
],
"format": [
"esm"
],
"outDir": "./dist",
"sourcemap": false,
"target": "es2023",
"tsconfig": "../../tsconfig.dts.json"
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist"
}
}