-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 882 Bytes
/
package.json
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
{
"name": "obsidian-tinypng-plugin",
"version": "0.2.0",
"description": "Obsidian plugin for compressing images with TinyPNG",
"license": "MIT",
"author": "ckt1031",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"format": "biome format . --write",
"lint": "tsc -noEmit -skipLibCheck && biome check .",
"lint:fix": "tsc -noEmit -skipLibCheck && biome check --apply .",
"test": "vitest run",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"dependencies": {
"localforage": "1.10.0",
"valibot": "0.30.0"
},
"devDependencies": {
"@biomejs/biome": "1.6.1",
"@types/node": "20.12.5",
"builtin-modules": "3.3.0",
"esbuild": "0.20.2",
"obsidian": "1.5.7",
"tslib": "2.6.2",
"typescript": "5.4.4",
"vitest": "1.4.0"
}
}