-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
26 lines (26 loc) · 984 Bytes
/
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
{
"name": "openai-assistants-cloudfare-worker-boilerplate",
"version": "0.0.0",
"private": true,
"scripts": {
"----[comment] build is automatically run (see wrangler.toml)----": "",
"build": "npx esbuild --bundle --target=esnext --format=esm --sourcemap --outdir=build src/index.ts",
"----[comment] miniflare 3 has no breakpoints----": "https://miniflare.dev/get-started/migrating#missing-features",
"start": "npx miniflare --modules build/index.js --watch --debug --wrangler-config wrangler.toml",
"test": "vitest --inspect --single-thread",
"----[comment] you need to be logged in to Cloudfare to run this command----": "",
"deploy": "wrangler deploy"
},
"dependencies": {
"itty-router": "^4.0.23",
"openai": "^4.16.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231025.0",
"esbuild": "^0.19.5",
"miniflare": "^2.10.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"wrangler": "3.15.0"
}
}