-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "remark-attribute-list",
"version": "0.3.1",
"description": "Remark plugin to parse and apply Attribute List from Kramdown",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/cm-ayf/remark-attribute-list.git"
},
"scripts": {
"build": "tsc",
"xo:fix": "xo --fix",
"xo:check": "xo --check",
"test": "node --test --conditions development --watch",
"test:ci": "node --test --conditions development"
},
"keywords": [
"markdown",
"mdast",
"plugin",
"remark",
"remark-plugin"
],
"author": "cm-ayf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cm-ayf/remark-attribute-list/issues"
},
"homepage": "https://github.com/cm-ayf/remark-attribute-list#readme",
"devDependencies": {
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^20.10.5",
"is-hidden": "^2.0.1",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"to-vfile": "^8.0.0",
"typescript": "^5.3.3",
"unist-builder": "^4.0.0",
"unist-util-remove-position": "^5.0.0",
"vfile": "^6.0.1",
"xo": "^0.56.0"
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/consistent-type-definitions": "off"
}
},
"dependencies": {
"@types/hast": "^3.0.3",
"@types/mdast": "^4.0.3",
"@types/unist": "^3.0.2",
"devlop": "^1.1.0",
"mdast-util-from-markdown": "^2.0.0",
"micromark-util-character": "^2.0.1",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0",
"unified": "^11.0.4",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"peerDependencies": {
"mdast-util-mdx": "^3.0.0",
"remark-parse": "^11.0.0"
}
}