forked from tokuhirom/obsidian-2hop-links-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "obsidian-twohop-links-plugin",
"version": "0.11.13",
"description": "This plugin will display the page linked 2hop ahead.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write **/*.{tsx,md,ts}"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "17.0.2",
"obsidian": "obsidianmd/obsidian-api#master",
"react": "17.0.1",
"react-dom": "17.0.1",
"tslib": "2.2.0"
},
"devDependencies": {
"@babel/preset-react": "7.12.13",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"builtin-modules": "3.3.0",
"eslint": "^7.25.0",
"obsidian": "^0.12.0",
"prettier": "^2.3.0",
"tslib": "^2.2.0",
"esbuild": "0.14.47",
"typescript": "^4.2.4"
}
}