forked from HuggingBear/DuckDuckGo-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 680 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "duckduckgo-ai",
"version": "1.0.0",
"description": "Deploy a free DuckDuckGo AI API using Cloudflare Worker",
"license": "GPL-3.0-only",
"scripts": {
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts",
"prettier:lint": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"hono": "^4.4.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240614.0",
"wrangler": "^3.60.3",
"prettier": "^3.3.2"
}
}