-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 KB
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
{
"name": "@localizesh/processor-md",
"repository": "localizesh/processor-md",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/patches"
],
"scripts": {
"clean": "rimraf -rf dist",
"build": "npm run clean && tsc --project tsconfig.build.json",
"test": "mocha",
"postinstall": "patch-package-ignore-missing --ignore-missing"
},
"dependencies": {
"@localizesh/processor-yaml": "^0.3.4",
"cheerio": "^1.0.0",
"hast-util-to-html": "^9.0.5",
"rehype-raw": "^7.0.0",
"rehype-remark": "^10.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit-parents": "^6.0.1"
},
"devDependencies": {
"@types/chai": "^5.2.1",
"@types/hast": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"@types/mocha": "^10.0.10",
"@types/unist": "^3.0.3",
"chai": "^5.2.0",
"eol": "^0.10.0",
"mocha": "^11.1.0",
"patch-package-ignore-missing": "^7.0.1-2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"peerDependencies": {
"@localizesh/sdk": "^0.3.4"
}
}