-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.47 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
{
"name": "reader-highlighter-tags",
"version": "1.0.5",
"description": "Highlight text in Reading View",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.{js,ts}\" \"tests/**/*.{js,ts}\"",
"format": "prettier --write \"src/**/*.{js,ts}\" \"tests/**/*.{js,ts}\" \"*.{json,md,mjs}\"",
"format:check": "prettier --check \"src/**/*.{js,ts}\" \"tests/**/*.{js,ts}\" \"*.{json,md,mjs}\""
},
"keywords": [
"obsidian",
"obsidian-plugin"
],
"author": "DuckTapeKiller",
"license": "MIT",
"optionalDependencies": {
"@esbuild/darwin-x64": "^0.28.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@types/node": "^20.19.39",
"@typescript-eslint/parser": "^8.62.0",
"esbuild": "^0.28.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.3.0",
"globals": "^17.0.0",
"obsidian": "latest",
"prettier": "^3.8.3",
"tslib": "2.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.4"
},
"overrides": {
"ajv": "6.14.0",
"brace-expansion": "1.1.13",
"flatted": "3.4.2",
"minimatch": "3.1.4"
}
}