-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.2 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
{
"name": "brian-clone",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"brian": "./bin/cli.ts"
},
"scripts": {
"dev": "concurrently \"next dev\" \".venv/bin/python api/youtube-transcripts/index.py\"",
"dev:next": "next dev",
"dev:py": ".venv/bin/python api/youtube-transcripts/index.py",
"scrape:youtube": "cd api/youtube-transcripts && ../../.venv/bin/python -c \"from index import sync_transcripts; import json; print(json.dumps(sync_transcripts(), indent=2))\"",
"thumbnails:channels": ".venv/bin/python api/youtube-transcripts/thumbnails.py --channels",
"thumbnails:videos": ".venv/bin/python api/youtube-transcripts/thumbnails.py --videos",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"upload-posts": "tsx scripts/uploadMediumPosts.ts",
"upload-linkedin": "tsx scripts/uploadLinkedInPosts.ts",
"prepare": "husky",
"brian": "tsx bin/cli.ts"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.86",
"@ai-sdk/react": "^2.0.115",
"@anthropic-ai/sdk": "^0.82.0",
"@langchain/core": "^1.1.0",
"@langchain/langgraph": "^1.0.2",
"@langchain/openai": "^1.1.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"@qdrant/js-client-rest": "^1.15.1",
"@spotify/web-api-ts-sdk": "^1.2.0",
"ai": "^5.0.86",
"cheerio": "^1.1.2",
"dotenv": "^17.2.3",
"framer-motion": "^12.27.0",
"langchain": "^1.1.1",
"next": "^16.1.1",
"openai": "^6.7.0",
"playwright": "^1.57.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"uuid": "^13.0.0",
"zod": "3",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/cheerio": "^1.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^11.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.38.0",
"eslint-config-next": "^16.0.1",
"husky": "^9.1.7",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}