-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
53
{
"name": "markdown-to-djot-ast",
"version": "0.0.8",
"license": "MIT",
"author": "Bernhard Berger",
"description": "A lightweight Javascript/Typescript library to convert Markdown content into a djot.js AST",
"keywords": [
"markup",
"djot",
"commonmark",
"markdown",
"markdown-it"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "tsc --emitDeclarationOnly",
"build": "tsc --emitDeclarationOnly && esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js",
"dev": "run-p dev:*",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:node": "node --watch dist/index.js",
"dev:esbuild": "pnpm run build --watch",
"test": "jest",
"printAst": "tsx examples/printAst.ts ./examples/test.md"
},
"devDependencies": {
"@mdit/plugin-alert": "^0.13.1",
"esbuild": "^0.20.2",
"jest": "^29.7.0",
"markdown-it": "^14.1.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@djot/djot": "^0.3.1",
"@types/jest": "^29.5.12",
"@types/markdown-it": "^14.0.1",
"@types/node": "^20.12.7"
}
}