-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.33 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.33 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
{
"name": "disney-tips",
"version": "2.0.0",
"type": "module",
"scripts": {
"fetch": "tsx scripts/fetch-videos.ts",
"extract": "tsx scripts/extract-tips.ts",
"dedupe": "tsx scripts/dedupe-tips.ts",
"backfill": "tsx scripts/backfill-transcripts.ts",
"check-staleness": "tsx scripts/check-staleness.ts",
"pipeline": "npm run fetch && npm run extract && npm run check-staleness",
"embed": "tsx scripts/embed-tips.ts",
"verify-live": "tsx scripts/verify-live.ts",
"pipeline:deploy": "npm run fetch && npm run backfill && npm run extract && npm run dedupe && npm run embed && npm run build && npm run check-staleness -- --check-dist && npm run verify-live",
"pipeline:full": "npm run fetch && npm run extract && npm run dedupe",
"server": "tsx server/index.ts",
"dev": "vite",
"build": "vite build && tsx scripts/prerender.ts",
"preview": "vite preview",
"test": "node --import tsx --test tests/**/*.test.ts",
"email:preview": "npm --prefix email run preview",
"email:send": "npm --prefix email run send"
},
"dependencies": {
"@google/genai": "^1.42.0",
"dotenv": "^17.2.3",
"express": "^4.21.0",
"openai": "^6.22.0",
"tsx": "^4.19.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.9.0",
"typescript": "^5.6.3",
"vite": "^6.0.3"
}
}