generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
34
35
36
{
"name": "reflection",
"version": "1.0.2",
"description": "An Obsidian Plugin for seeing daily and weekly notes from this day in years past.",
"main": "main.js",
"scripts": {
"lint": "eslint . --ext .ts",
"dev": "vite build --watch",
"build": "npx svelte-check && vite build",
"bumpversion": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"builtin-modules": "3.3.0",
"eslint": "^8.21.0",
"eslint-plugin-svelte3": "^4.0.0",
"obsidian": "latest",
"sass": "^1.64.1",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-preprocess": "^4.10.7",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vite": "^3.0.0"
},
"dependencies": {
"obsidian-daily-notes-interface": "^0.9.4"
}
}