generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "image-converter",
"version": "1.4.1",
"description": "Convert, compress, resize, annotate, markup, draw, crop, rotate, flip, align images directly in Obsidian. Drag-resize, rename with variables, batch process. WEBP, JPG, PNG, HEIC, TIF.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit && node esbuild.config.mjs production",
"build:copy": "npm run build && node scripts/copy-to-testing-vault.mjs",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"pre-release": "node scripts/prepare-release.js",
"test": "vitest run",
"test:clean": "vitest run --reporter=tap",
"test:json": "vitest run --reporter=json",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.10.6",
"@codemirror/view": "^6.39.9",
"@eslint/js": "^9.35.0",
"@faker-js/faker": "^10.0.0",
"@types/node": "^24.3.1",
"@types/piexifjs": "^1.0.0",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"builtin-modules": "3.3.0",
"esbuild": "^0.25.9",
"eslint": "^9.35.0",
"eslint-plugin-obsidianmd": "^0.1.9",
"fabric": "^6.5.0",
"globals": "^16.3.0",
"happy-dom": "^18.0.1",
"obsidian": "latest",
"sortablejs": "^1.15.6",
"tslib": "2.4.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"piexifjs": "^1.0.6"
}
}