@markbattistella/docsify-autoheaders 5.1.0 → 2026.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +45 -45
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@markbattistella/docsify-autoheaders",
|
|
3
|
+
"version": "2026.5.9",
|
|
4
|
+
"description": "Auto header numbering for docsify.js",
|
|
5
|
+
"main": "./dist/docsify-auto-headers.min.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/markbattistella/docsify-auto-headers.git"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"launch": "docsify serve ./docs -o",
|
|
12
|
+
"update": "ncu -u && npm update && npm install",
|
|
13
|
+
"minify:babel": "npx babel ./dist/docsify-auto-headers.js -o ./dist/docsify-auto-headers.babel.js",
|
|
14
|
+
"minify:uglify": "uglifyjs ./dist/docsify-auto-headers.babel.js --verbose -c -m -o ./dist/docsify-auto-headers.min.js",
|
|
15
|
+
"minify": "npm run minify:babel && npm run minify:uglify",
|
|
16
|
+
"patch": "node ./.github/scripts/release.js -patch",
|
|
17
|
+
"minor": "node ./.github/scripts/release.js -minor",
|
|
18
|
+
"major": "node ./.github/scripts/release.js -major"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@babel/cli": "^7.28.3",
|
|
22
|
+
"@babel/core": "^7.28.3",
|
|
23
|
+
"@babel/preset-env": "^7.28.3",
|
|
24
|
+
"docsify-cli": "^4.4.2",
|
|
25
|
+
"jsonfile": "^6.2.0"
|
|
26
|
+
},
|
|
27
|
+
"babel": {
|
|
28
|
+
"presets": [
|
|
29
|
+
"@babel/env"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"unpkg": "./dist/docsify-auto-headers.min.js",
|
|
33
|
+
"jsdelivr": "./dist/docsify-auto-headers.min.js",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"auto numbering",
|
|
36
|
+
"headings",
|
|
37
|
+
"header",
|
|
38
|
+
"docsify",
|
|
39
|
+
"plugin"
|
|
40
|
+
],
|
|
41
|
+
"author": "Mark Battistella",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/markbattistella/docsify-auto-headers/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://header.docsify.markbattistella.com"
|
|
47
47
|
}
|