-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.51 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
{
"name": "draftside-web",
"version": "0.0.0",
"private": true,
"description": "Open source, offline writing editor with on-device AI via Chrome's built-in Gemini Nano.",
"type": "module",
"license": "MIT",
"author": {
"name": "Colin Armstrong",
"url": "https://armstr.ng"
},
"homepage": "https://draftside.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/seeARMS/draftside.git"
},
"bugs": {
"url": "https://github.com/seeARMS/draftside/issues"
},
"keywords": [
"writing",
"editor",
"offline",
"local-first",
"open-source",
"gemini-nano",
"chrome-built-in-ai",
"on-device-ai",
"tiptap",
"pwa",
"astro"
],
"scripts": {
"generate-og": "node scripts/generate-og.mjs",
"dev": "npm run generate-og && astro dev",
"start": "npm run generate-og && astro dev",
"build": "npm run generate-og && astro build",
"preview": "npm run build && wrangler dev",
"astro": "astro",
"generate-types": "wrangler types",
"typecheck": "tsc --noEmit",
"deploy": "npm run build && wrangler deploy"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@types/dom-chromium-ai": "^0.0.16",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"astro": "^6.2.0",
"tailwindcss": "^4.2.4",
"typescript": "^5.9.3",
"wrangler": "^4.86.0"
},
"dependencies": {
"@astrojs/cloudflare": "^13.3.0",
"@astrojs/react": "^5.0.4",
"@astrojs/sitemap": "^3.7.2",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/open-sans": "^5.2.7",
"@fontsource/dm-mono": "^5.2.7",
"@radix-ui/react-slot": "^1.2.4",
"@resvg/resvg-js": "^2.6.2",
"@tiptap/extension-character-count": "^3.22.5",
"@tiptap/extension-highlight": "^3.22.5",
"@tiptap/extension-link": "^3.22.5",
"@tiptap/extension-placeholder": "^3.22.5",
"@tiptap/extension-task-item": "^3.22.5",
"@tiptap/extension-task-list": "^3.22.5",
"@tiptap/extension-typography": "^3.22.5",
"@tiptap/extension-underline": "^3.22.5",
"@tiptap/markdown": "^3.22.5",
"@tiptap/react": "^3.22.5",
"@tiptap/starter-kit": "^3.22.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.14.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"satori": "^0.26.0",
"tailwind-merge": "^3.6.0",
"vaul": "^1.1.2"
},
"overrides": {
"vite": "^7"
}
}