test/node_modules/vuepress/package.json
2024-08-13 09:27:52 +08:00

106 lines
2.4 KiB
JSON

{
"name": "vuepress",
"version": "2.0.0-rc.14",
"description": "Vue-powered Static Site Generator",
"keywords": [
"documentation",
"generator",
"vue",
"vuepress"
],
"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": "./bin/vuepress.js",
"./cli": "./dist/cli.js",
"./client": "./dist/client.js",
"./client-app": "./dist/client-app.js",
"./client-types": "./client-types.d.ts",
"./core": "./dist/core.js",
"./markdown": "./dist/markdown.js",
"./shared": "./dist/shared.js",
"./utils": "./dist/utils.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vuepress": "./bin/vuepress.js",
"vuepress-vite": "./bin/vuepress-vite.js",
"vuepress-webpack": "./bin/vuepress-webpack.js"
},
"files": [
"bin",
"dist",
"client-types.d.ts"
],
"dependencies": {
"vue": "^3.4.29",
"@vuepress/cli": "2.0.0-rc.14",
"@vuepress/core": "2.0.0-rc.14",
"@vuepress/client": "2.0.0-rc.14",
"@vuepress/shared": "2.0.0-rc.14",
"@vuepress/utils": "2.0.0-rc.14",
"@vuepress/markdown": "2.0.0-rc.14"
},
"peerDependencies": {
"vue": "^3.4.0",
"@vuepress/bundler-vite": "2.0.0-rc.14",
"@vuepress/bundler-webpack": "2.0.0-rc.14"
},
"peerDependenciesMeta": {
"@vuepress/bundler-vite": {
"optional": true
},
"@vuepress/bundler-webpack": {
"optional": true
}
},
"engines": {
"node": ">=18.16.0"
},
"tsup": {
"clean": true,
"dts": [
"./src/index.ts",
"./src/cli.ts",
"./src/client-app.ts",
"./src/client.ts",
"./src/core.ts",
"./src/markdown.ts",
"./src/shared.ts",
"./src/utils.ts"
],
"entry": [
"./src/index.ts",
"./src/cli.ts",
"./src/client-app.ts",
"./src/client.ts",
"./src/core.ts",
"./src/markdown.ts",
"./src/shared.ts",
"./src/utils.ts"
],
"format": [
"esm"
],
"outDir": "./dist",
"sourcemap": false,
"target": "es2022",
"tsconfig": "../../tsconfig.dts.json"
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist"
}
}