-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.46 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
41
42
43
44
45
46
47
{
"name": "@markbattistella/docsify-autoheaders",
"version": "5.0.1",
"description": "Auto header numbering for docsify.js",
"main": "./dist/docsify-auto-headers.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/markbattistella/docsify-auto-headers.git"
},
"scripts": {
"launch": "docsify serve ./docs -o",
"update": "ncu -u && npm update && npm install",
"babel": "npx babel ./dist/docsify-auto-headers.js -o ./dist/docsify-auto-headers.babel.js",
"uglify": "uglifyjs ./dist/docsify-auto-headers.babel.js --verbose -c -m -o ./dist/docsify-auto-headers.min.js",
"minify": "npm run babel && npm run uglify",
"patch": "node ./.github/scripts/release.js -patch",
"minor": "node ./.github/scripts/release.js -minor",
"major": "node ./.github/scripts/release.js -major"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"docsify-cli": "^4.4.4",
"jsonfile": "^6.1.0"
},
"babel": {
"presets": [
"@babel/env"
]
},
"unpkg": "./dist/docsify-auto-headers.min.js",
"jsdelivr": "./dist/docsify-auto-headers.min.js",
"keywords": [
"auto numbering",
"headings",
"header",
"docsify",
"plugin"
],
"author": "Mark Battistella",
"license": "MIT",
"bugs": {
"url": "https://github.com/markbattistella/docsify-auto-headers/issues"
},
"homepage": "https://autoheader.docsify.markbattistella.com"
}