-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "taskmate",
"version": "0.10.0",
"private": true,
"type": "module",
"description": "A local-first Markdown task manager for the desktop.",
"author": "Taskmate contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/itvincent-git/taskmate.git"
},
"license": "MIT",
"engines": {
"node": "24.11.0"
},
"packageManager": "pnpm@11.5.1",
"scripts": {
"dev": "vite",
"dev:app": "tauri dev",
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run && node --test scripts/version.test.mjs",
"tauri": "tauri",
"release": "node scripts/release.mjs"
},
"dependencies": {
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-markdown": "^6.5.1",
"@codemirror/language": "^6.12.4",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"@fontsource-variable/dm-sans": "^5.3.0",
"@lezer/common": "^1.5.2",
"@lezer/highlight": "^1.2.3",
"@lezer/markdown": "^1.7.2",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-context-menu": "^2.3.7",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-progress": "^1.1.16",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-tooltip": "^1.2.16",
"@tanstack/react-virtual": "^3.14.8",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2.5.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.536.0",
"react": "^19.1.1",
"react-day-picker": "^10.0.1",
"react-dom": "^19.1.1",
"react-router": "^7.18.1",
"tailwind-merge": "^3.6.0",
"yaml": "^2.9.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@tauri-apps/cli": "^2.8.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.1.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.6.0",
"jsdom": "^26.1.0",
"tailwindcss": "^4.3.3",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vitest": "^3.2.4"
}
}