-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.17 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.17 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
{
"name": "dashtext",
"description": "A text editor for quick capture",
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": ["packages/*"],
"catalog": {
"@codemirror/commands": "^6.10.0",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.0.0",
"@codemirror/language-data": "^6.5.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.8",
"@internationalized/date": "^3.8.1",
"@lezer/highlight": "^1.2.3",
"@lucide/svelte": "^0.555.0",
"@playwright/test": "^1.49.1",
"@replit/codemirror-vim": "^6.3.0",
"@sveltejs/adapter-cloudflare": "^7.2.4",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/cli": "^2.9.5",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-sql": "^2.3.1",
"@types/node": "^24.10.1",
"bits-ui": "^2.14.4",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.7",
"drizzle-orm": "^0.45.1",
"idb": "^8.0.3",
"runed": "^0.37.0",
"svelte": "^5.45.3",
"svelte-check": "^4.3.4",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"vite": "^7.2.6",
"vite-plugin-top-level-await": "^1.5.0",
"vite-plugin-wasm": "^3.4.1",
"wrangler": "^4.22.0"
}
},
"scripts": {
"build:desktop": "bun --filter @dashtext/desktop tauri build",
"build:web": "bun --filter @dashtext/web build",
"check": "bun --filter '*' check",
"dev:desktop": "bun --filter @dashtext/desktop tauri dev",
"dev:web": "bun --filter @dashtext/web dev",
"screenshots": "bun --filter @dashtext/desktop screenshots",
"tauri": "bun --filter @dashtext/desktop tauri"
},
"devDependencies": {
"typescript": "catalog:"
},
"dependencies": {
"@types/sql.js": "^1.4.9",
"drizzle-orm": "^0.45.1",
"sql.js": "^1.13.0"
}
}