-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "imitate-black-box",
"version": "1.0.0",
"description": "An tutorial for imitating black box mad.",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"update": "npm-run-all -p update:*",
"update:sidebar": "tsx ./scripts/sidebar/index.ts",
"update:reading-time": "tsx ./scripts/reading-time/index.ts",
"build": "npm run update && npm run docs:build",
"test:fetchBook": "tsx ./scripts/common/fetchBook.spec.ts"
},
"keywords": [
"acgn",
"imitate",
"black box",
"mad"
],
"author": "wdpm",
"license": "ISC",
"devDependencies": {
"@better-scroll/core": "^2.0.0-alpha.20",
"@better-scroll/mouse-wheel": "^2.0.0-alpha.20",
"@better-scroll/scroll-bar": "^2.0.0-alpha.20",
"@types/fs-extra": "^9.0.13",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.11.9",
"axios": "^1.2.0",
"better-scroll": "^1.15.2",
"clipboard": "^2.0.6",
"fs-extra": "^10.1.0",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"npm-run-all": "^4.1.5",
"reading-time": "^1.5.0",
"sass": "^1.66.1",
"tsx": "^3.11.0",
"typescript": "^4.8.4",
"viewerjs": "^1.11.3",
"vite": "^4.4.9",
"vitepress": "1.0.0-rc.10",
"vitepress-plugin-comment-with-giscus": "^1.1.7",
"vitepress-plugin-back-to-top": "^1.0.1"
},
"dependencies": {
"vue": "^3.3.4"
}
}