forked from nekoshita/obsidian-auto-card-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.19 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
{
"name": "obsidian-auto-card-link",
"version": "1.2.3",
"description": "Automatically fetches metadata from a url and makes it as a card-styled link",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.js",
"build": "tsc -noEmit && node esbuild.config.js production",
"lint": "tsc --noEmit && eslint . --ext .ts",
"fix": "eslint . --fix --ext .ts",
"version": "node version-bump.js && git add manifest.json versions.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nekoshita/obsidian-auto-card-link.git"
},
"author": "Nekoshita Yuki",
"license": "MIT",
"bugs": {
"url": "https://github.com/nekoshita/obsidian-auto-card-link/issues"
},
"homepage": "https://github.com/nekoshita/obsidian-auto-card-link#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"builtin-modules": "^3.2.0",
"esbuild": "^0.14.28",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"obsidian": "^0.14.3",
"prettier": "^2.6.1",
"typescript": "^4.6.3"
}
}