generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
41
42
43
44
45
46
47
{
"name": "flakepiles",
"version": "0.1.5",
"description": "Put small stickies / cards in a dedicated file. Manage them in masonry layout.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "vite build --watch --mode development",
"build:dev": "vite build --mode development",
"build": "vite build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ."
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^10.1.0",
"@floating-ui/vue": "^1.1.9",
"@rewl/kit": "^0.1.5",
"@vueuse/core": "^14.1.0",
"nanoid": "^5.1.6",
"obsidian": "latest",
"parse-json": "^8.3.0",
"vue": "^3.5.26"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/node": "^22.19.3",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/tsconfig": "^0.8.1",
"esbuild": "0.25.5",
"eslint": "^9.39.2",
"eslint-plugin-obsidianmd": "0.1.9",
"eslint-plugin-vue": "^10.6.2",
"globals": "^17.0.0",
"jiti": "2.6.1",
"sass": "^1.97.1",
"tslib": "^2.8.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.51.0",
"vite": "^7.3.0",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-static-copy": "^3.1.4",
"vue-eslint-parser": "^10.2.0"
}
}