forked from jaywcjlove/idoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://json.schemastore.org/package.json",
"name": "idoc",
"version": "1.21.11",
"description": "Simple document generation tool. Dependence Node.js run.",
"homepage": "https://jaywcjlove.github.io/idoc/",
"author": "kenny wang <[email protected]>",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"idoc": "lib/idoc.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/idoc.git"
},
"keywords": [
"idoc",
"markdown",
"api",
"document",
"tool"
],
"files": [
"lib",
"template",
"themes"
],
"scripts": {
"start": "node lib/idoc.js -w",
"doc": "node lib/idoc.js",
"watch": "tsbb watch --disable-babel --no-esm -f src/idoc.ts",
"build": "tsbb build --disable-babel --no-esm -f src/idoc.ts",
"prettier": "prettier --write --ignore-unknown \"**/*.{js,ts,css,json}\"",
"type-check": "tsc --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,css,json}": "prettier --write --ignore-unknown"
},
"engines": {
"node": "^14.16 || >=16.0.0"
},
"dependencies": {
"@types/ejs": "^3.1.0",
"@types/fs-extra": "~9.0.13",
"@types/inquirer": "^9.0.0",
"@types/micromatch": "^4.0.2",
"@types/minimist": "~1.2.2",
"@uiw/formatter": "~1.3.2",
"@wcj/markdown-to-html": "^2.0.9",
"chokidar": "^3.5.3",
"ejs": "^3.1.6",
"fs-extra": "~10.1.0",
"image2uri": "^2.0.0",
"inquirer": "^9.0.0",
"micromatch": "^4.0.5",
"minimist": "~1.2.6",
"recursive-readdir-files": "^2.3.0",
"rehype-autolink-headings": "~6.1.1",
"rehype-format": "^4.0.1",
"rehype-ignore": "~1.0.0",
"rehype-minify-whitespace": "^5.0.1",
"rehype-slug": "~5.0.1",
"yaml": "^2.0.0"
},
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"tsbb": "^3.7.2"
}
}