-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 958 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 958 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
32
33
34
{
"name": "yt-ad-skip",
"version": "0.1.0",
"description": "YouTube sponsor/ad detection via LLM",
"scripts": {
"start": "tsx server/index.ts",
"typecheck": "tsc --noEmit",
"build": "npm run build:extension",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:extension": "npm run build:extension && tsx test/verify-extension.ts",
"eval": "tsx eval/eval.ts --run",
"eval:score": "tsx eval/eval.ts",
"build:extension": "tsc --project extension/tsconfig.json"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/chrome": "^0.1.37",
"@types/node": "^20.10.0",
"playwright": "^1.58.2",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"vitest": "^4.0.0"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.27",
"@hono/node-server": "^1.19.9",
"ai": "^6.0.82",
"dotenv": "^17.3.0",
"hono": "^4.12.2",
"zod": "^4.3.6"
}
}