@leandown/markdown-it 0.0.10 → 0.0.12
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 +1 -9661
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leandown/markdown-it",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "markdown-it plugin for syntax-highlighting Lean 4 code blocks via the Lean LSP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/mzhang28/remark-lean"
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
-
"import": "./
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
14
|
"types": "./dist/index.d.ts"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "bun run build:js && bun run build:dts",
|
|
30
|
-
"build:js": "bun build src/index.ts --outdir dist --format esm --target node",
|
|
30
|
+
"build:js": "bun build src/index.ts --outdir dist --format esm --target node --external @leandown/core --external markdown-it",
|
|
31
31
|
"build:dts": "tsc -p tsconfig.build.json"
|
|
32
32
|
},
|
|
33
33
|
"type": "module",
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
"markdown-it": ">=13.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@leandown/core": "^0.0.
|
|
43
|
+
"@leandown/core": "^0.0.12"
|
|
44
44
|
}
|
|
45
45
|
}
|