-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1013 Bytes
/
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
{
"name": "link-card",
"main": "./lib/index",
"version": "0.4.5",
"description": "Expand links as cards",
"repository": "https://github.com/elpnt/inkdrop-link-card",
"license": "MIT",
"scripts": {
"build": "swc src/ -d lib/",
"watch": "swc -w src/ -d lib/",
"lint": "yarn eslint && yarn prettier",
"eslint": "eslint src",
"prettier": "prettier --check src",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier --write src"
},
"engines": {
"inkdrop": "^5.x"
},
"devDependencies": {
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.108",
"@types/node": "^14.0.13",
"@types/react": "^16.9.36",
"chokidar": "^3.5.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"open-graph-scraper": "^4.11.0"
}
}