-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.53 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
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
{
"name": "@hyperbook/markdown",
"version": "0.11.2",
"author": "Mike Barkmin",
"homepage": "https://github.com/openpatch/hyperbook#readme",
"license": "MIT",
"platform": "node",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpatch/hyperbook.git",
"directory": "packages/markdown"
},
"bugs": {
"url": "https://github.com/openpatch/hyperbook/issues"
},
"scripts": {
"version": "pnpm build",
"lint": "tsc --noEmit",
"dev": "node devWatcher.mjs",
"dev:build": "node devBuild.mjs && node postbuild.mjs",
"test": "vitest",
"build": "rimraf dist && pnpm build:pkg && pnpm build:types && node postbuild.mjs",
"build:pkg": "node ../../scripts/build.mjs && ncp assets dist/assets",
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly"
},
"bundle": "all",
"dependencies": {
"@rehype-pretty/transformers": "^0.13.2",
"decircular": "^1.0.0",
"handlebars": "^4.7.8",
"hast-util-from-html": "^2.0.3",
"is-obj": "^3.0.0",
"js-base64": "^3.7.7",
"mdast-util-directive": "^3.0.0",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-to-hast": "^13.1.0",
"mdast-util-to-string": "^4.0.0",
"pako": "2.1.0",
"qrcode-svg": "^1.1.0",
"rehype-format": "^5.0.1",
"rehype-katex": "7.0.1",
"rehype-pretty-code": "^0.14.0",
"rehype-stringify": "^10.0.1",
"remark-directive": "3.0.0",
"remark-directive-rehype": "0.4.2",
"remark-gemoji": "8.0.0",
"remark-gfm": "4.0.0",
"remark-math": "6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-unwrap-images": "4.0.0",
"sort-keys": "^5.1.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1"
},
"devDependencies": {
"@excalidraw/excalidraw": "0.17.6",
"@hyperbook/types": "workspace:*",
"@hyperbook/web-component-excalidraw": "workspace:*",
"@types/hast": "3.0.4",
"@types/mdast": "^4.0.4",
"@types/object-hash": "3.0.6",
"@types/pako": "2.0.3",
"@types/qrcode-svg": "^1.1.5",
"chalk": "^5.3.0",
"chokidar": "3.6.0",
"live-server": "^1.2.2",
"mermaid": "11.3.0",
"ncp": "^2.0.0",
"scratchblocks": "^3.6.4",
"vfile": "^6.0.3",
"vitest": "^1.6.0",
"wavesurfer.js": "^7.8.8"
}
}