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

55 lines
1.1 KiB
JSON

{
"name": "@vuepress/shared",
"version": "2.0.0-rc.14",
"description": "Utils that shared between VuePress node and client",
"keywords": [
"vuepress",
"shared",
"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": {
"@mdit-vue/types": "^2.1.0"
},
"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"
}
}