forked from sleroq/cumban
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 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
{
"name": "cumban",
"version": "2.11.1",
"description": "Kanban view for Bases.",
"main": "main.js",
"scripts": {
"dev": "bun esbuild.config.mjs",
"typecheck": "tsc -noEmit -skipLibCheck",
"build": "bun run typecheck && bun esbuild.config.mjs production",
"lint": "eslint ./src",
"lint:obsidian:install": "bun install --cwd tools/obsidian-lint",
"lint:obsidian": "node tools/obsidian-lint/node_modules/eslint/bin/eslint.js src package.json --config tools/obsidian-lint/eslint.config.mjs",
"svelte-check": "svelte-check --tsconfig ./tsconfig.json",
"test": "bun test tests",
"trace:export": "node scripts/trace-export.mjs",
"trace:compare": "node scripts/trace-compare.mjs",
"version:bump": "node version-bump.mjs",
"version:patch": "node version-bump.mjs patch",
"version:minor": "node version-bump.mjs minor",
"version:major": "node version-bump.mjs major"
},
"keywords": [
"obsidian",
"plugin",
"kanban",
"bases"
],
"author": "sleroq",
"license": "WTFPL",
"devDependencies": {
"@types/node": "^25.2.3",
"esbuild": "^0.27.3",
"esbuild-svelte": "^0.9.2",
"eslint": "^10.0.0",
"eslint-plugin-obsidianmd": "^0.1.9",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^17.3.0",
"obsidian": "1.12.0",
"svelte": "^5.28.2",
"svelte-check": "^4.2.1",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
}
}