-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "remark-mdx-chartjs",
"version": "2.2.2",
"description": "A remark plugin that replaces `chartjs` codeblocks with ChartJS Components (react-chartjs-2).",
"keywords": [
"remark",
"markdown",
"mdx",
"chartjs",
"chart",
"remark-plugin",
"mdast",
"unified"
],
"type": "module",
"author": "Pablo Angelani <pablo.angelani@gmai.com>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:pangelani/remark-mdx-chartjs.git"
},
"bugs": {
"url": "https://github.com/pangelani/remark-mdx-chartjs/issues"
},
"homepage": "https://pangelani.github.io/remark-mdx-chartjs",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"scripts": {
"lint": "eslint lib",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --coverage",
"test:coverage": "node --experimental-vm-modules ./node_modules/.bin/jest --coverage --coverageReporters text text-summary"
},
"devDependencies": {
"@mdx-js/mdx": "^2.0.0",
"@types/mdast": "^3.0.11",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"to-vfile": "^7.0.0",
"unified": "^10.1.2",
"vfile": "^2.2.0"
},
"dependencies": {
"acorn": "^8.8.1",
"acorn-jsx": "^5.3.2",
"estree-util-value-to-estree": "^2.1.0",
"fs-extra": "^11.1.0",
"react-chartjs-2": "^5.1.0",
"unist-util-visit": ">=3.0.0",
"yaml": "^2.2.1"
},
"peerDependencies": {
"chart.js": "^4.1.1",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
}