-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "obsidian-extended-metadatacache",
"version": "0.5.1",
"description": "Inverse lookup complement to Obsidian's MetadataCache — tag→files, backlinks, heading→files, frontmatter→files, and more.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run build && node scripts/build-test-plugin.mjs && wdio run ./wdio.conf.mts",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"version-bump": "node scripts/version-bump.mjs"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"metadata-cache",
"inverse-index",
"backlinks",
"tags"
],
"author": "saberzero1",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/saberzero1/obsidian-extended-metadatacache.git"
},
"bugs": {
"url": "https://github.com/saberzero1/obsidian-extended-metadatacache/issues"
},
"homepage": "https://saberzero1.github.io/obsidian-extended-metadatacache/",
"peerDependencies": {
"obsidian": ">=1.5.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@wdio/cli": "^9.27.0",
"@wdio/local-runner": "^9.27.0",
"@wdio/mocha-framework": "^9.27.0",
"esbuild": "^0.25.0",
"eslint": "^9.0.0",
"obsidian": "^1.8.7",
"prettier": "^3.8.3",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^3.0.0",
"wdio-obsidian-reporter": "^2.4.0",
"wdio-obsidian-service": "^2.4.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18.0.0"
}
}