-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.72 KB
/
package.json
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "yt-semantic-search",
"version": "1.0.0",
"private": true,
"description": "OpenAI-powered semantic search for any YouTube playlist – featuring the All-In Podcast.",
"author": "Travis Fischer <[email protected]>",
"repository": "transitive-bullshit/yt-channel-search",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"build:server": "tsup",
"prepare": "husky install",
"pre-commit": "lint-staged",
"test": "run-p test:*",
"test:lint": "next lint",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"dependencies": {
"@google-cloud/storage": "^6.9.4",
"@vercel/analytics": "^0.1.11",
"clsx": "^1.2.1",
"delay": "^5.0.0",
"dequal": "^2.0.3",
"framer-motion": "^7.10.3",
"googleapis": "^109.0.1",
"got": "^12.6.0",
"lqip-modern": "^2.0.0",
"lucide-react": "0.127.0",
"next": "^13.2.4",
"next-themes": "^0.2.1",
"openai": "^3.2.1",
"p-map": "^5.5.0",
"p-retry": "^5.1.2",
"pinecone-client": "^1.1.0",
"pretty-ms": "^8.0.0",
"puppeteer": "^19.7.5",
"puppeteer-core": "^19.7.5",
"quick-lru": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.8",
"react-use": "^17.4.0",
"rehype-format": "^4.0.1",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"swr": "^2.1.1",
"unescape": "^1.0.1",
"unified": "^10.1.2",
"unstated-next": "^1.1.0",
"xml2js": "^0.4.23",
"youtube-transcript": "^1.0.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.2.4",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^18.15.5",
"@types/react": "18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"ava": "^5.2.0",
"dotenv-safe": "^8.2.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.6",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.6",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx"
]
},
"keywords": [
"youtube",
"search",
"playlist",
"all-in",
"all in",
"podcast",
"openai",
"pinecone",
"ai",
"vector",
"embedding"
]
}