-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
39
40
{
"name": "@discue/vuepress-plugin-outline",
"author": "Stefan Pfaffel",
"version": "0.5.0",
"license": "ISC",
"private": false,
"description": "Adds an outline of the current page's headlines to the right side of the screen",
"main": "src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/discue/vuepress-plugin-outline"
},
"files": [
"src"
],
"bugs": {
"url": "https://github.com/discue/vuepress-plugin-outline"
},
"homepage": "https://ui.discue.io",
"keywords": [
"vuepress",
"vuepress-plugin",
"plugin",
"vuepress-plugin-outline",
"right-anchor"
],
"devDependencies": {
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"standard-version": "^9.5.0",
"vue-tsc": "^2.2.0"
},
"scripts": {
"lint": "eslint -c .eslintconfig.js src",
"release": "standard-version && git push --follow-tags origin && npm publish",
"release-major": "standard-version --release-as major && git push --follow-tags origin main && npm publish --access public",
"release-minor": "standard-version --release-as minor && git push --follow-tags origin main && npm publish --access public"
}
}