-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
48
49
{
"name": "docsify-interactive-checkboxes",
"version": "2.0.1",
"description": "A lightweight Docsify plugin that transforms standard markdown checkboxes into interactive, persistent task lists",
"main": "src/plugin.js",
"unpkg": "dist/plugin.min.js",
"jsdelivr": "dist/plugin.min.js",
"files": [
"src",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "terser src/plugin.js -o dist/plugin.min.js -c -m",
"dev": "npx serve docs -l 3000",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreferra/docsify-plugin-interactive-checkboxes.git"
},
"keywords": [
"docsify",
"docsify-plugin",
"checkbox",
"interactive",
"todo",
"task-list",
"markdown",
"persistent",
"localstorage"
],
"author": "Andrea Ferrario <andreaferrario02@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreferra/docsify-plugin-interactive-checkboxes/issues"
},
"homepage": "https://github.com/andreferra/docsify-plugin-interactive-checkboxes#readme",
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"terser": "^5.31.0"
},
"publishConfig": {
"access": "public"
}
}