-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.15 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
{
"name": "remark-code-import",
"description": "📝 Populate code blocks from files",
"version": "1.2.0",
"engines": {
"node": ">= 12"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Kai Hao",
"license": "MIT",
"homepage": "https://github.com/kevin940726/remark-code-import#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kevin940726/remark-code-import.git"
},
"files": [
"dist",
"gatsby"
],
"keywords": [
"remark",
"remark-plugin",
"markdown",
"code-block",
"code-fence",
"file-system",
"import-code",
"gatsby",
"gatsby-plugin"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"prepare": "npm run build && npm test -- run"
},
"dependencies": {
"strip-indent": "^4.0.0",
"to-gatsby-remark-plugin": "^0.1.0",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"mdast": "^3.0.0",
"prettier": "2.5.1",
"remark": "^14.0.2",
"typescript": "4.4.4",
"vfile": "^5.3.0",
"vitest": "^0.31.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}