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
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
48
49
50
51
52
53
54
{
"name": "boxflow",
"version": "1.4.0",
"description": "The most satisfying progress tracker for Obsidian. Map your workflows into modular, colorful box grids.",
"author": "junevm",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/junevm/boxflow-obsidian.git"
},
"main": "main.js",
"type": "module",
"scripts": {
"setup": "pnpm install",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint .",
"test": "echo 'No tests specified'",
"release": "release-it"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"productivity",
"progress-tracker",
"habit-tracker",
"task-management",
"visual-workflow",
"todo-grid",
"gamification"
],
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "9.30.1",
"@release-it/conventional-changelog": "^10.0.4",
"@types/node": "^20.12.12",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"release-it": "^19.2.4",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.53.1"
},
"dependencies": {
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"obsidian": "latest",
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
}