-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@alertbox/docsify-footer",
"version": "1.0.0-0",
"description": "A footer markdown plugin for magic documentation site generator, docsify.",
"jsdelivr": "dist/docsify-footer.min.js",
"unpkg": "dist/docsify-footer.min.js",
"browser": "dist/docsify-footer.min.js",
"main": "src/docsify-footer.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/alertbox/docsify-footer"
},
"keywords": [
"documentation",
"markdown",
"plugin",
"docsify",
"docsify-plugin",
"docsify-footer"
],
"author": {
"name": "The Alertbox, Inc.",
"url": "https://github.com/alertbox/",
"email": "alertbox.inc@gmail.com"
},
"contributors": [
"Kosala (Nuwan) Perera (https://kosperera.github.io)"
],
"license": "MIT",
"bugs": "https://github.com/alertbox/docsify-footer/issues/",
"homepage": "https://alertbox.github.io/docsify-footer/",
"readme": "README.md",
"scripts": {
"clean": "rm -rf node_modules/ dist/",
"build": "bun build --minify --no-bundle --outfile ./dist/docsify-footer.min.js ./src/docsify-footer.js",
"build:clean": "bun clean && bun run build",
"release": "bun install && bun --bun run np",
"lint": "deno lint",
"start": "docsify serve docs/ -p 4321"
},
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENSE"
],
"dependencies": {},
"devDependencies": {
"@types/bun": "1.0.8",
"docsify-cli": "4.4.4",
"np": "10.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"collective": {
"url": "https://opencollective.com/alertbox"
}
}