-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.41 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "opennotes",
"version": "0.1.2",
"type": "module",
"description": "A calm, open-source, local-first markdown workspace. Your notes. Real files. Your storage. Your AI.",
"author": "Harsh Mathur",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/harshmathurx/OpenNotes.git"
},
"homepage": "https://github.com/harshmathurx/OpenNotes",
"keywords": [
"markdown",
"notes",
"local-first",
"obsidian-alternative",
"open-source",
"editor",
"git",
"tauri"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test -c tests/e2e/playwright.config.ts",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tiptap/core": "^3.23.4",
"@tiptap/extension-dropcursor": "^3.23.4",
"@tiptap/extension-gapcursor": "^3.23.4",
"@tiptap/extension-horizontal-rule": "^3.23.4",
"@tiptap/extension-image": "^3.23.4",
"@tiptap/extension-link": "^3.23.4",
"@tiptap/extension-placeholder": "^3.23.4",
"@tiptap/extension-task-item": "^3.23.4",
"@tiptap/extension-task-list": "^3.23.4",
"@tiptap/extension-text-align": "^3.23.4",
"@tiptap/extension-underline": "^3.23.4",
"@tiptap/pm": "^3.23.4",
"@tiptap/react": "^3.23.4",
"@tiptap/starter-kit": "^3.23.4",
"@tiptap/suggestion": "^3.23.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dexie": "^4.4.2",
"dexie-react-hooks": "^4.4.0",
"highlight.js": "^11.11.1",
"lowlight": "^3.3.0",
"lucide-react": "^1.16.0",
"marked": "^18.0.3",
"next": "16.1.7",
"next-themes": "^0.4.6",
"prosemirror-markdown": "^1.13.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"shadcn": "^4.7.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.2.1",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/ui": "^4.1.6",
"eslint": "^9.39.4",
"eslint-config-next": "16.1.7",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"postcss": "^8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vitest": "^4.1.6"
},
"packageManager": "pnpm@11.20.0"
}