-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "ai-bookmark-saver",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"worker": "tsx watch worker/index.ts",
"worker:prod": "node dist/worker/index.js",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:generate": "prisma generate"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@apify/client": "^2.9.3",
"@aws-sdk/client-s3": "^3.600.0",
"@google/generative-ai": "^0.15.0",
"@mozilla/readability": "^0.5.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@pinecone-database/pinecone": "^3.0.0",
"@prisma/client": "^5.15.0",
"@tanstack/react-query": "^5.50.0",
"bullmq": "^5.8.0",
"defuddle": "^0.5.0",
"ioredis": "^5.4.1",
"jsdom": "^24.1.1",
"next": "14.2.5",
"next-auth": "^4.24.7",
"node-fetch": "^3.3.2",
"openai": "^4.52.0",
"react": "^18",
"react-dom": "^18",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"prisma": "^5.15.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.15.7",
"typescript": "^5"
},
"description": "Save any public link — YouTube, Instagram, Twitter/X, or any website — and search your saved bookmarks using **natural language**. Powered by Gemini, Grok, OpenAI Embeddings, and Pinecone.",
"main": "next.config.js",
"directories": {
"lib": "lib"
},
"author": "",
"license": "ISC"
}