-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.15 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
{
"name": "optin-token",
"version": "1.0.0",
"description": "Dependency-free double-opt-in confirmation tokens + one-click (RFC 8058) unsubscribe headers. Web Crypto only — runs on Cloudflare Workers with no nodejs_compat, plus Deno, Bun, browsers, and Node 20+.",
"type": "module",
"main": "index.mjs",
"exports": {
".": "./index.mjs",
"./token": "./token.mjs",
"./unsub": "./unsub.mjs"
},
"files": [
"index.mjs",
"token.mjs",
"unsub.mjs",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test"
},
"keywords": [
"double-opt-in",
"opt-in",
"email-confirmation",
"confirmation-token",
"magic-link",
"unsubscribe",
"one-click-unsubscribe",
"rfc8058",
"rfc-8058",
"list-unsubscribe",
"hmac",
"signed-token",
"web-crypto",
"webcrypto",
"cloudflare-workers",
"workers",
"edge",
"serverless",
"newsletter",
"email",
"zero-dependencies"
],
"author": "James Carroll",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jimdc/optin-token.git"
},
"engines": {
"node": ">=18"
}
}