-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.36 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
{
"name": "obsidian-linux-image-fix",
"version": "1.2.1",
"description": "Fixes image loading issues on Linux. Ensures images display correctly in Obsidian on Ubuntu and other Linux distributions.",
"main": "main.js",
"type": "module",
"scripts": {
"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 .",
"lint:css": "stylelint '**/*.css'",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage"
},
"keywords": [],
"license": "LGPL-3.0",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint/js": "9.30.1",
"@types/node": "^20.19.39",
"@vitest/coverage-v8": "^2.1.9",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "^0.2.5",
"globals": "14.0.0",
"jiti": "2.6.1",
"jsdom": "^29.1.1",
"lefthook": "^2.1.6",
"stylelint": "^17.11.1",
"stylelint-config-recommended": "^18.0.0",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1",
"vitest": "^2.1.9"
},
"dependencies": {
"obsidian": "latest"
}
}