-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 879 Bytes
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
{
"name": "web-clipper-share",
"version": "0.1.0",
"private": true,
"description": "Backend for Local Web Clipper share-as-link feature. Receives markdown/HTML from the extension, runs Sonnet via Vercel AI Gateway to produce a visual HTML page, stores in Vercel Blob, serves at /c/<slug>.",
"type": "module",
"scripts": {
"dev": "vercel dev",
"deploy": "vercel deploy",
"deploy:prod": "vercel deploy --prod",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.0",
"@ai-sdk/deepseek": "^1.0.0",
"@ai-sdk/gateway": "^3.0.0",
"@ai-sdk/openai": "^2.0.0",
"@vercel/blob": "^0.27.0",
"ai": "^6.0.0",
"js-yaml": "^4.1.0",
"marked": "^14.0.0",
"nanoid": "^5.0.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@vercel/node": "^5.0.0",
"typescript": "^5.6.0",
"vercel": "^54.0.0"
}
}