@leandown/markdown-it 0.0.1
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/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@leandown/markdown-it",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "markdown-it plugin for syntax-highlighting Lean 4 code blocks via the Lean LSP",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mzhang28/remark-lean"
|
|
7
|
+
},
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./src/index.ts",
|
|
14
|
+
"types": "./dist/index.d.ts"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"import": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"files": ["dist"],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "bun run build:js && bun run build:dts",
|
|
28
|
+
"build:js": "bun build src/index.ts --outdir dist --format esm --target node",
|
|
29
|
+
"build:dts": "tsc -p tsconfig.build.json"
|
|
30
|
+
},
|
|
31
|
+
"type": "module",
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/markdown-it": "^14.1.2",
|
|
34
|
+
"@types/node": "latest",
|
|
35
|
+
"typescript": "^5"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"markdown-it": ">=13.0.0"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@leandown/core": "workspace:*"
|
|
42
|
+
}
|
|
43
|
+
}
|