-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
{
"name": "cards-view",
"version": "1.9.0",
"description": "Plugin for Obsidian.md. Displays a card view of your notes.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"prebuild": "npm run lezer",
"postinstall": "npm run lezer",
"lezer": "lezer-generator src/search/search.grammar -o src/search/grammar.js",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint && prettier --check **/*.mjs **/*.ts **/*.svelte",
"test": "node --test --require tsx/cjs $(find . -name \"*.test.ts\")"
},
"keywords": [],
"author": "Maud Royer <hello@maudroyer.fr>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@tsconfig/svelte": "^5.0.2",
"@types/masonry-layout": "^4.2.7",
"@types/minimasonry": "^1.3.5",
"@types/node": "^20.11.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.0",
"esbuild-svelte": "^0.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.13.0",
"lezer-generator": "^0.13.4",
"obsidian": "latest",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.0.0",
"svelte-eslint-parser": "^0.43.0",
"tsafe": "^1.8.5",
"tslib": "^2.6.2",
"tsx": "^4.19.2",
"typescript": "^5.5.0",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"dependencies": {
"minimasonry": "^1.3.2"
}
}