-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "workers-research",
"version": "0.0.1",
"description": "A Cloudflare Workers implementation of OpenAI's Deep Research agent",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --external cloudflare:workers",
"build-css": "npx @tailwindcss/cli -i ./src/layout/index.css -o ./assets/styles.css",
"lint": "npx @biomejs/biome check src/ || (npx @biomejs/biome check --write src/; exit 1)"
},
"publishConfig": {
"access": "public"
},
"author": "Gabriel Massadas",
"license": "MIT",
"homepage": "https://github.com/G4brym/workers-research",
"repository": {
"type": "git",
"url": "[email protected]:G4brym/workers-research.git"
},
"bugs": {
"url": "https://github.com/G4brym/workers-research/issues"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/vitest-pool-workers": "^0.6.12",
"@cloudflare/workers-types": "^4.20250204.0",
"@tailwindcss/cli": "^4.0.7",
"@types/node": "^22.13.9",
"daisyui": "^5.0.0-beta.8",
"tailwindcss": "^4.0.7",
"typescript": "^5.7.3",
"vitest": "2.1.9",
"wrangler": "^3.107.3"
},
"dependencies": {
"@ai-sdk/google": "^1.1.13",
"@cloudflare/puppeteer": "^0.0.14",
"ai": "^4.1.28",
"hono": "^4.7.0",
"marked": "^15.0.7",
"node-html-markdown": "^1.3.0",
"workers-qb": "^1.10.2",
"zod": "^3.24.1"
}
}