-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.48 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.48 KB
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.1.0",
"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",
"minify:babel": "npx babel ./dist/docsify-auto-headers.js -o ./dist/docsify-auto-headers.babel.js",
"minify:uglify": "uglifyjs ./dist/docsify-auto-headers.babel.js --verbose -c -m -o ./dist/docsify-auto-headers.min.js",
"minify": "npm run minify:babel && npm run minify: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.28.3",
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"docsify-cli": "^4.4.2",
"jsonfile": "^6.2.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://header.docsify.markbattistella.com"
}