-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "@okaryo/gatsby-remark-link-card",
"version": "1.0.5",
"description": "Gatsby Remark plugin to embed link card",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc && mv ./dist/* . && rm -rf ./dist",
"check": "biome check ./src",
"check:fix": "biome check --write --unsafe ./src",
"check:ci": "biome ci ./src",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okaryo/gatsby-remark-link-card.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-remark",
"remark",
"link-card"
],
"author": "okaryo",
"license": "MIT",
"dependencies": {
"open-graph-scraper": "^6.8.3",
"sanitize-html": "^2.14.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/open-graph-scraper": "^4.8.5",
"@types/sanitize-html": "^2.13.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"react": "^18.0.0 || ^0.0.0",
"gatsby": "^5.0.0",
"gatsby-transformer-remark": "^6.0.0"
}
}