-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "gatsby-remark-enhanced-wikilink",
"version": "1.0.1",
"description": "A Gatsby Remark plugin to support Enhanced Wikilink Syntax (e.g., Obsidian Internal Links) for Gatsby 4",
"main": "index.js",
"types": "index.d.ts",
"author": "Anakorn Kyavatanakij <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"remark",
"wikilink",
"obsidian"
],
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepack": "tsc"
},
"dependencies": {
"github-slugger": "^1.4.0",
"unist-util-visit": "^2.0.2"
},
"devDependencies": {
"@types/github-slugger": "^1.3.0",
"@types/mdast": "^3.0.10",
"@types/node": "^17.0.5",
"typescript": "^4.5.4"
},
"peerDependencies": {
"gatsby": "^4.0.0"
},
"homepage": "https://github.com/anakornk/gatsby-remark-enhanced-wikilink#readme",
"repository": {
"type": "git",
"url": "https://github.com/anakornk/gatsby-remark-enhanced-wikilink.git"
}
}