-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
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": "entity-notes",
"version": "1.2.1",
"description": "An Obsidian plugin that converts tagged entities into notes with backlinks to the original note.",
"author": "Bart van Wissen",
"main": "main.js",
"type": "module",
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint .",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.28.0",
"@eslint/js": "9.30.1",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "4.1.0",
"esbuild": "^0.27.0",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"jsdom": "^29.0.1",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1",
"vitest": "4.1.0"
},
"overrides": {
"flatted": "^3.4.2",
"minimatch": "^10.0.0"
},
"dependencies": {
"obsidian": "latest"
}
}