-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "rehype-components",
"repository": "marekweb/rehype-components",
"license": "MIT",
"version": "0.3.0",
"type": "module",
"keywords": [
"rehype",
"rehype-plugin"
],
"scripts": {
"build": "tsc",
"check": "npm run lint && npm run format",
"fix": "npm run lint:fix && npm run format:fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "npm run build && node --test",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"exports": "./dist/components.js",
"files": [
"dist/components.js",
"dist/components.d.ts"
],
"types": "./dist/components.d.ts",
"devDependencies": {
"@types/hast": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"hastscript": "^9.0.0",
"prettier": "^3.2.5",
"rehype-format": "^5.0.0",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"typescript": "^5.3.3",
"unified": "^11.0.4"
},
"dependencies": {
"hast-util-is-element": "^3.0.0",
"unist-util-visit": "^5.0.0"
},
"prettier": {
"proseWrap": "always",
"arrowParens": "avoid"
}
}