recipe/packages/shared/package.json

78 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2024-08-18 19:16:25 +08:00
{
"name": "vuepress-shared",
"version": "2.0.0-rc.38",
"description": "Shared files for vuepress2",
"keywords": [
"vuepress",
"vuepress2",
"utils"
],
"homepage": "https://shared.vuejs.press",
"bugs": {
"url": "https://github.comvuepress-theme-hope/vuepress-theme-hope/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/vuepress-theme-hope/vuepress-theme-hope.git",
"directory": "packages/shared"
},
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "mister-hope@outlook.com",
"url": "https://mister-hope.com"
},
"type": "module",
"exports": {
".": "./lib/node/index.js",
"./client": "./lib/client/index.js",
"./client/*": "./lib/client/*",
"./node": "./lib/node/index.js",
"./styles/*": "./styles/*",
"./package.json": "./package.json"
},
"main": "./lib/node/index.js",
"types": "./lib/node/index.d.ts",
"files": [
"lib",
"styles"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin esbuild",
"clean": "rimraf --glob ./lib ./*.tsbuildinfo",
"copy": "cpx \"src/client/**/*.scss\" lib/client",
"dev": "concurrently \"pnpm dev:copy\" \"pnpm dev:ts\"",
"dev:copy": "pnpm copy -w",
"dev:ts": "tsc -b tsconfig.build.json --watch"
},
"dependencies": {
"@vuepress/helper": "2.0.0-rc.26",
"@vueuse/core": "^10.9.0",
"cheerio": "1.0.0-rc.12",
"dayjs": "^1.11.11",
"execa": "^8.0.1",
"fflate": "^0.8.2",
"gray-matter": "^4.0.3",
"semver": "^7.6.0",
"vue": "^3.4.26"
},
"devDependencies": {
"@types/connect": "3.4.38",
"@types/semver": "7.5.8",
"@vuepress/bundler-vite": "2.0.0-rc.9",
"@vuepress/bundler-webpack": "2.0.0-rc.9",
"@vuepress/plugin-git": "2.0.0-rc.22",
"ora": "8.0.1",
"vite": "5.2.11"
},
"peerDependencies": {
"vuepress": "2.0.0-rc.9"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=8",
"pnpm": ">=7",
"yarn": ">=2"
}
}