generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 949 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
32
33
34
35
{
"name": "obsidian-image-layouts",
"version": "0.15.5",
"license": "MIT",
"main": "build/main.js",
"type": "module",
"scripts": {
"dev": "vite build --mode development --watch",
"build": "vite build --mode production",
"check": "svelte-check --tsconfig ./tsconfig.json",
"format": "biome format --write ./src",
"lint": "biome lint --apply-unsafe ./src"
},
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^20.8.10",
"@unocss/extractor-svelte": "^0.57.2",
"builtin-modules": "^3.3.0",
"bun-types": "latest",
"obsidian": "^1.4.11",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"unocss": "^0.57.2",
"vite": "^4.5.0",
"vitest": "^1.2.2"
},
"dependencies": {
"front-matter": "^4.0.2",
"gray-matter": "^4.0.3"
}
}