@markbattistella/docsify-charty 3.0.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-charty",
|
|
3
|
+
"version": "2026.5.9",
|
|
4
|
+
"description": "Add charts and graphs to your docsify website",
|
|
5
|
+
"main": "dist/docsify-charty.min.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/markbattistella/docsify-charty.git"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"launch": "docsify serve ./docs -o",
|
|
12
|
+
"update": "ncu -u",
|
|
13
|
+
"babel": "npx babel ./dist/docsify-charty.js -o ./dist/docsify-charty.babel.js",
|
|
14
|
+
"uglify": "uglifyjs ./dist/docsify-charty.babel.js --verbose -c -m -o ./dist/docsify-charty.min.js",
|
|
15
|
+
"minify": "npm run babel && npm run 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.24.7",
|
|
22
|
+
"@babel/core": "^7.24.7",
|
|
23
|
+
"@babel/preset-env": "^7.24.7",
|
|
24
|
+
"jsonfile": "^6.1.0"
|
|
25
|
+
},
|
|
26
|
+
"babel": {
|
|
27
|
+
"presets": [
|
|
28
|
+
"@babel/env"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"unpkg": "./dist/docsify-charty.min.js",
|
|
32
|
+
"jsdelivr": "./dist/docsify-charty.min.js",
|
|
33
|
+
"keywords": [
|
|
34
|
+
"docsify",
|
|
35
|
+
"plugin",
|
|
36
|
+
"charts",
|
|
37
|
+
"graphs",
|
|
38
|
+
"pie chart",
|
|
39
|
+
"line graph"
|
|
40
|
+
],
|
|
41
|
+
"author": "Mark Battistella",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/markbattistella/docsify-charty/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://charty.docsify.markbattistella.com/"
|
|
47
47
|
}
|