-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "@lezer/markdown",
"version": "1.3.2",
"description": "Incremental Markdown parser that consumes and emits Lezer trees",
"main": "dist/index.cjs",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Marijn Haverbeke <[email protected]>",
"license": "MIT",
"devDependencies": {
"ist": "^1.1.1",
"mocha": "^10.2.0",
"@lezer/html": "^1.0.0",
"rollup": "^2.52.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"getdocs-ts": "^0.1.0",
"builddocs": "^1.0.0"
},
"dependencies": {
"@lezer/common": "^1.0.0",
"@lezer/highlight": "^1.0.0"
},
"repository": {
"type" : "git",
"url" : "https://github.com/lezer-parser/markdown.git"
},
"scripts": {
"watch": "rollup -w -c rollup.config.js",
"prepare": "rollup -c rollup.config.js",
"test": "mocha",
"build-readme": "node bin/build-readme.cjs"
}
}