-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 880 Bytes
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
{
"name": "extramark",
"version": "2.1.0",
"description": "CommonMark superset with widely used syntax extensions",
"author": "Márton Visnovitz <vimtaai@pm.me>",
"license": "MIT",
"repository": "github:vimtaai/extramark",
"type": "module",
"main": "lib/index.js",
"bin": "bin/extramark.js",
"files": [
"{lib,bin}/**/*.js"
],
"scripts": {
"check": "biome check",
"check:ci": "biome ci",
"check:fix": "biome check --write"
},
"dependencies": {
"commander": "^14.0.3",
"common-tags": "^1.8.2",
"critic-markup": "^2.0.1",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2"
}
}