forked from jillro/obsidian-cards-view-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
37
38
39
40
{
"name": "notes-explorer",
"version": "2.4.0",
"description": "View all your notes in a form of cards for better visual navigation and revision of your notes.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Atmanand Gauns",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^5.0.2",
"@types/masonry-layout": "^4.2.7",
"@types/minimasonry": "^1.3.5",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"builtin-modules": "3.3.0",
"esbuild": "^0.20.1",
"esbuild-svelte": "^0.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"obsidian": "latest",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.12",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"@types/sortablejs": "^1.13.0"
},
"dependencies": {
"@simonwep/pickr": "^1.8.2",
"sortablejs": "^1.15.0",
"minimasonry": "^1.3.2"
}
}