generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.13 KB
/
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
{
"name": "obsidian-svelte-starter",
"version": "1.0.3",
"description": "A plugin development template for devs who want to use svelte in Obsidian.",
"main": "main.js",
"scripts": {
"lint": "npx eslint --ext .ts,.svelte .",
"dev": "npm run lint && vite build --watch",
"build": "npx svelte-check && vite build",
"bumpversion": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Quorafind",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"builtin-modules": "3.3.0",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.37.0",
"obsidian": "latest",
"obsidian-typings": "^1.0.8",
"svelte": "^4.2.15",
"svelte-check": "^3.6.9",
"svelte-eslint-parser": "^0.34.1",
"svelte-preprocess": "^5.1.4",
"tslib": "2.4.0",
"typescript": "5.3.3",
"vite": "^5.2.10"
}
}