test02/node_modules/@vuepress/bundler-vite/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.5 KiB
JSON

{
"name": "@vuepress/bundler-vite",
"version": "2.0.0-rc.14",
"description": "Bundler vite package of VuePress",
"keywords": [
"vuepress-bundler",
"vuepress",
"bundler",
"vite"
],
"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",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.19",
"connect-history-api-fallback": "^2.0.0",
"postcss": "^8.4.38",
"postcss-load-config": "^6.0.1",
"rollup": "^4.18.0",
"vite": "~5.3.1",
"vue": "^3.4.29",
"vue-router": "^4.3.3",
"@vuepress/client": "2.0.0-rc.14",
"@vuepress/shared": "2.0.0-rc.14",
"@vuepress/utils": "2.0.0-rc.14",
"@vuepress/core": "2.0.0-rc.14"
},
"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"
}
}