forked from BlizzBolts/docit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.15 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
{
"name": "@blizzbolts/docit",
"version": "0.8.1",
"license": "MIT",
"bin": {
"docit": "bin/docit.js"
},
"author": {
"name": "phshy0607",
"email": "[email protected]"
},
"type": "module",
"main": "./build/node/index.js",
"module": "./build/node/index.js",
"types": "./build/node/index.d.ts",
"exports": {
".": {
"import": "./build/node/index.js",
"types": "./build/node/index.d.ts"
}
},
"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",
"test": "vitest",
"release": "yarn build && yarn publish && node scripts/gh.js"
},
"files": [
"build",
"src",
"bin",
"client",
"scripts",
"docs-dist"
],
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.12",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-config": "^5.0.6",
"@types/react-router-dom": "5.3.0",
"@types/resolve": "^1.20.1",
"@types/styled-components": "^5.1.24",
"gh-pages": "^3.2.3",
"vitest": "^0.7.6"
},
"dependencies": {
"@mdx-js/react": "^2.0.0",
"@mdx-js/rollup": "^2.0.0-rc.1",
"@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",
"esbuild": "^0.14.13",
"estree-walker": "^3.0.1",
"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-util-gfm-table": "^1.0.4",
"mdast-util-mdx": "1.1.0",
"mdast-util-toc": "^6.1.0",
"minimist": "^1.2.5",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^17.0.2",
"react-frame-component": "^5.2.1",
"react-live": "^2.4.1",
"react-router": "^5.2.1",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.3.0",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"remark-emoji": "^3.0.2",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"resolve": "^1.19.0",
"rimraf": "^3.0.2",
"sass": "^1.49.9",
"simpler-state": "^1.1.0",
"styled-components": "^5.3.3",
"typescript": "^4.6.2",
"unist-util-select": "^4.0.1",
"unist-util-visit": "4.0.0",
"vite": "^2.9.5",
"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"
}
}