@hyperbook/markdown 0.29.1 → 0.29.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4297 -2369
- package/dist/index.js.map +4 -4
- package/dist/remarkGithubEmoji.d.ts +3 -0
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperbook/markdown",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.2",
|
|
4
4
|
"author": "Mike Barkmin",
|
|
5
5
|
"homepage": "https://github.com/openpatch/hyperbook#readme",
|
|
6
6
|
"license": "MIT",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"lunr-languages": "^1.14.0",
|
|
83
83
|
"mermaid": "11.6.0",
|
|
84
84
|
"ncp": "^2.0.0",
|
|
85
|
+
"node-fetch": "^3.3.2",
|
|
85
86
|
"p5": "^2.0.1",
|
|
86
87
|
"scratchblocks": "^3.6.4",
|
|
87
88
|
"vfile": "^6.0.3",
|
|
@@ -94,9 +95,9 @@
|
|
|
94
95
|
"version": "pnpm build",
|
|
95
96
|
"lint": "tsc --noEmit",
|
|
96
97
|
"dev": "node devWatcher.mjs",
|
|
97
|
-
"dev:build": "node devBuild.mjs && node postbuild.mjs",
|
|
98
|
+
"dev:build": "node prebuild.mjs && node devBuild.mjs && node postbuild.mjs",
|
|
98
99
|
"test": "vitest",
|
|
99
|
-
"build": "rimraf dist && pnpm build:pkg && pnpm build:types && node postbuild.mjs",
|
|
100
|
+
"build": "rimraf dist && node prebuild.mjs && pnpm build:pkg && pnpm build:types && node postbuild.mjs",
|
|
100
101
|
"build:pkg": "node ../../scripts/build.mjs && ncp assets dist/assets",
|
|
101
102
|
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly"
|
|
102
103
|
}
|