-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.93 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.93 KB
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
53
54
55
56
57
58
59
{
"name": "openauth-server",
"version": "0.0.0",
"private": true,
"scripts": {
"build:wallet": "node src/wallet-client/build.mjs",
"deploy": "npm run build:wallet && wrangler deploy",
"dev": "npm run build:wallet && wrangler dev",
"start": "npm run build:wallet && wrangler dev",
"test": "vitest",
"cf-typegen": "wrangler types"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.12.4",
"@types/node": "^25.1.0",
"esbuild": "^0.27.2",
"typescript": "^5.5.2",
"vitest": "~3.2.0",
"wrangler": "^4.61.1"
},
"dependencies": {
"@openauthjs/openauth": "^0.4.3",
"@solana/connector": "^0.2.3",
"@solana/wallet-standard-features": "^1.3.0",
"@solana/wallet-standard-util": "^1.1.2",
"arctic": "^2.3.4",
"hono": "^4.11.7",
"resend": "^6.9.1",
"valibot": "^1.2.0"
},
"cloudflare": {
"bindings": {
"OPENAUTH_KV": {
"description": "KV namespace for storing authentication data (tokens, keys, password hashes)"
},
"RESEND_API_KEY": {
"description": "Your Resend API key for sending verification emails. Get one at https://resend.com/api-keys"
},
"EMAIL_FROM": {
"description": "Sender address for emails, e.g., 'App Name <noreply@yourdomain.com>'. Must use a verified domain in Resend."
},
"GITHUB_CLIENT_ID": {
"description": "GitHub OAuth App Client ID. Create one at https://github.com/settings/developers"
},
"GITHUB_CLIENT_SECRET": {
"description": "GitHub OAuth App Client Secret. Create one at https://github.com/settings/developers"
},
"GOOGLE_CLIENT_ID": {
"description": "Google OAuth Client ID. Create one at https://console.cloud.google.com/apis/credentials"
},
"GOOGLE_CLIENT_SECRET": {
"description": "Google OAuth Client Secret. Create one at https://console.cloud.google.com/apis/credentials"
},
"SOLANA_CHAIN_ID": {
"description": "Solana network to use for SIWS: mainnet, devnet, or testnet. Defaults to mainnet."
}
}
}
}