-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 770 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 770 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
{
"name": "cloudflare-workers-oauth",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "A unified OAuth 2.0 gateway for Cloudflare Workers that enables multiple applications to integrate with various third-party authentication providers through a single deployment.",
"author": {
"name": "maonianyou",
"email": "maonianyou@gmail.com"
},
"scripts": {
"build": "node esbuild.config.js",
"deploy": "npm run build && wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"test": "vitest",
"cf-typegen": "wrangler types"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.7.5",
"@cloudflare/workers-types": "^4.20250321.0",
"typescript": "^5.5.2",
"vitest": "~3.0.7",
"wrangler": "^4.5.0"
}
}