-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "remark-tangle",
"version": "0.0.3",
"description": "A remark plugin for making interactive markdown documents with Tangle.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"directories": {
"doc": "../docs"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jqhoogland/remark-tangle.git"
},
"author": "Jesse Hoogland",
"license": "MIT",
"bugs": {
"url": "https://github.com/jqhoogland/remark-tangle/issues"
},
"homepage": "https://github.com/jqhoogland/remark-tangle#readme",
"dependencies": {
"hastscript": "^6.0.0",
"mathjs": "^9.5.1",
"mdast-util-to-hast": "^12.0.0",
"rehype-format": "^4.0.0",
"rehype-stringify": "^9.0.2",
"remark": "^14.0.1",
"unified": "^10.1.0",
"unist-util-visit": "^2.0.1"
},
"devDependencies": {
"@types/mdast": "^3.0.10",
"fs": "^0.0.1-security",
"remark-directive": "^2.0.0",
"remark-gfm": "^3.0.0",
"remark-parse": "^10.0.0",
"remark-rehype": "^10.0.0",
"rollup": "^2.58.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"vfile-reporter": "^7.0.2"
}
}