-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 895 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 895 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
27
28
29
30
31
{
"name": "@goplausible/liquid-auth-cloud",
"version": "1.2.0",
"description": "Liquid Auth on Cloudflare Workers — FIDO2/WebAuthn with Algorand wallet binding",
"type": "module",
"private": true,
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"build": "wrangler deploy --dry-run --outdir=dist",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"lint": "oxlint src/",
"lint:fix": "oxlint --fix src/",
"fmt": "oxfmt src/",
"fmt:check": "oxfmt --check src/"
},
"dependencies": {
"@simplewebauthn/server": "^13.2.2",
"fcm-cloudflare-workers": "2.0.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250320.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"typescript": "^5.9.3",
"vitest": "^3.1.4",
"wrangler": "^4.14.1"
}
}