forked from vuepress/vp-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 914 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "vp-update",
"version": "0.6.0",
"type": "module",
"description": "Update helper for VuePress2",
"keywords": [
"vuepress",
"vuepress2",
"update"
],
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "[email protected]",
"url": "https://mister-hope.com"
},
"bin": {
"vp-update": "./lib/index.js"
},
"exports": {
"./package.json": "./package.json"
},
"files": [
"lib"
],
"engines": {
"node": ">= 18"
},
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin esbuild",
"prepublishOnly": "pnpm build"
},
"packageManager": "[email protected]",
"dependencies": {
"cac": "^6.7.14",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/semver": "7.5.6",
"esbuild": "0.20.0",
"rollup": "4.9.6",
"rollup-plugin-esbuild": "6.1.1",
"rollup-plugin-resolve-shebang": "1.0.1"
}
}