-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
38 lines (38 loc) · 1.09 KB
/
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
{
"name": "vuepress-plugin-code-enhance",
"version": "2.0.0-alpha.26",
"description": "A plugin for adding full-screen and copy button to your code blocks in VuePress 2.",
"keywords": [
"vue",
"vuepress",
"vuepress-plugin"
],
"homepage": "https://github.com/Renovamen/vuepress-theme-gungnir/tree/main/packages/plugins/code-enhance",
"bugs": {
"url": "https://github.com/Renovamen/vuepress-theme-gungnir/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Renovamen/vuepress-theme-gungnir.git",
"directory": "packages/plugins/code-enhance"
},
"license": "MIT",
"author": "Renovamen <[email protected]>",
"main": "lib/node/index.js",
"types": "lib/node/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo",
"copy": "cpx \"src/**/*.css\" lib"
},
"dependencies": {
"@vuepress/client": "2.0.0-beta.49",
"@vuepress/core": "2.0.0-beta.49",
"@vuepress/utils": "2.0.0-beta.49",
"vue": "^3.2.36",
"vue-router": "^4.0.15"
}
}