forked from tu2-atmanand/Task-Board
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.4 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
{
"name": "task-board",
"version": "1.8.7",
"description": "An Obsidian plugin to manage small to large projects using tasks from the whole vault on a centralized board using various kinds of views like Kanban, map, list, etc.",
"main": "main.js",
"type": "module",
"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": "GPL-3.0",
"devDependencies": {
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/search": "^6.5.0",
"@codemirror/state": "6.5.0",
"@codemirror/view": "^6.38.0",
"@types/node": "^24.0.14",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "8.37.0",
"@typescript-eslint/parser": "8.37.0",
"builtin-modules": "5.0.0",
"codemirror": "^6.0.0",
"esbuild": "0.25.6",
"obsidian": "latest",
"obsidian-typings": "4.43.0",
"tslib": "2.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@simonwep/pickr": "^1.9.1",
"@xyflow/react": "^12.9.3",
"i18next": "^25.5.3",
"lucide-react": "^0.525.0",
"monkey-around": "^3.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"sortablejs": "^1.15.6"
}
}