-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.39 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
53
54
55
{
"name": "3md-parser",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"author": "Pathum Egodawatta",
"description": "Parser for 3md (Trilingual Markdown) - Sinhala, Tamil, English",
"keywords": [
"markdown",
"3md",
"trilingual",
"parser",
"sinhala",
"tamil",
"english"
],
"main": "./lib/index.js",
"module": "./lib/index.esm.mjs",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"lint": "npx eslint src test"
},
"dependencies": {
"mdast-util-find-and-replace": "^3.0.1",
"react-markdown": "^9.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"unist-util-visit": "^5.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/hast": "^3.0.3",
"@types/jest": "^29.5.8",
"@types/mdast": "^4.0.3",
"@types/node": "^20.9.0",
"@types/unist": "^3.0.2",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"remark-stringify": "^11.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"unified": "^11.0.4",
"vfile": "^6.0.1"
}
}