-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 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
48
49
{
"name": "zenboard-plugin",
"version": "1.0.0",
"description": "🧠 ZenBoard – A powerful habit planner plugin for Obsidian",
"main": "main.js",
"scripts": {
"tw": "tailwindcss -i ./src/input.css -o ./styles.css",
"dev": "node esbuild.config.mjs",
"dev:watch": "concurrently \"npm run tw -- --watch\" \"npm run dev\"",
"build": "npm run tw && tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"clean-build": "rm -f main.js styles.css && npm run build",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"plugin",
"productivity",
"tasks",
"calendar",
"habits",
"react"
],
"author": "ShadAbdullah",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/styled-jsx": "^2.2.9",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"concurrently": "^9.2.0",
"esbuild": "^0.17.3",
"obsidian": "latest",
"tailwindcss": "^3.4.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"lucide-react": "^0.525.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-jsx": "^5.1.7",
"zustand": "^5.0.7"
}
}