-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "remark-code-import-replace",
"version": "0.0.0",
"description": "Remark import code from file and replace nodes for dynamic components rendering.",
"author": "Fuxing Loh",
"repository": {
"type": "git",
"url": "https://github.com/fuxingloh/remark-code-import-replace.git"
},
"bugs": "https://github.com/fuxingloh/remark-code-import-replace/issues",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"files": [
"dist",
"nuxt"
],
"keywords": [
"typescript",
"javascript",
"transform",
"transpile",
"markdown",
"remark",
"remark-code-import"
],
"devDependencies": {
"@types/lodash": "^4.14.165",
"@types/mdast": "^3.0.3",
"@types/node": "^14.14.14",
"@types/unist": "^2.0.3",
"remark": "^11.0.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"lodash": "^4.17.20",
"mdast": "^3.0.0",
"unist-builder": "^2.0.3",
"unist-util-visit": "^2.0.3"
},
"engines": {
"node": ">=14"
}
}