-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
117 lines (117 loc) · 3.16 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@blizzbolts/docit",
"version": "0.11.0",
"license": "MIT",
"bin": {
"docit": "bin/docit.js"
},
"author": {
"name": "citrus327",
"email": "[email protected]"
},
"type": "module",
"main": "./build/node/index.js",
"module": "./build/node/index.js",
"types": "./build/node/index.d.ts",
"exports": "./build/node/index.js",
"scripts": {
"dev": "rimraf -rf build && run-p dev:node entry-prepare dev:client",
"dev:node": "tsc -w -p src/node",
"dev:client": "tsc -w -p src/client",
"entry-prepare": "node scripts/cpEntryFile.js",
"build": "run-s build:prepare entry-prepare build:client build:node docs:build",
"build:prepare": "rimraf -rf build",
"build:client": "tsc -p src/client",
"build:node": "tsc -p src/node",
"docs": "run-p dev docs-dev",
"docs:dev": "node ./bin/docit start",
"docs:build": "node ./bin/docit build docs",
"docs:publish": "run-s build gh",
"gh": "node scripts/gh.js",
"test": "vitest"
},
"files": [
"build",
"src",
"bin",
"client",
"scripts",
"docs-dist"
],
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/mdast": "^3.0.10",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.12",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "5.3.0",
"@types/resolve": "^1.20.1",
"@types/styled-components": "^5.1.24",
"gh-pages": "^3.2.3",
"rehype-stringify": "^9.0.3",
"remark-rehype": "^10.1.0",
"vfile": "^5.3.5",
"vitest": "^0.7.6"
},
"dependencies": {
"@mdx-js/mdx": "2.1.5",
"@mdx-js/react": "2.1.5",
"@mdx-js/rollup": "2.1.5",
"@rollup/plugin-node-resolve": "^13.1.3",
"@vitejs/plugin-react": "^1.1.4",
"bundle-require": "^3.0.4",
"chalk": "^5.0.0",
"chokidar": "^3.5.2",
"fs-extra": "^10.0.0",
"globby": "^13.1.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.5.0",
"lodash-es": "^4.17.21",
"mdast": "^3.0.0",
"mdast-util-toc": "^6.1.0",
"minimist": "^1.2.5",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"qrcode": "1.5.0",
"react": "^17.0.2",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^17.0.2",
"react-router": "6.3.0",
"react-router-dom": "6.3.0",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"remark": "^14.0.2",
"remark-emoji": "^3.0.2",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx": "^2.1.5",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"resolve": "^1.19.0",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"sass": "^1.49.9",
"simpler-state": "^1.1.0",
"styled-components": "^5.3.3",
"typescript": "^4.6.2",
"unified": "^10.1.2",
"unist-util-select": "^4.0.1",
"unist-util-visit": "^4.0.0",
"vite": "2.9.13",
"vite-plugin-virtual": "^0.1.1"
},
"resolutions": {
"react-is": "16.13.1",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}