-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 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
{
"name": "agegate",
"version": "1.0.0",
"type": "module",
"private": true,
"license": "Apache-2.0",
"description": "Privacy-preserving age verification for the web (passkeys + signed age-tier credentials). Includes a minimal SDK and an optional UI wrapper.",
"author": "ReallyMe LLC",
"homepage": "https://agecheck.me",
"repository": {
"type": "git",
"url": "https://github.com/agecheck/agegate"
},
"bugs": {
"url": "https://github.com/agecheck/agegate/issues"
},
"keywords": [
"age-verification",
"age-gating",
"privacy",
"passkeys",
"webauthn",
"verifiable-credentials",
"jwt",
"eidas",
"eudi-wallet"
],
"packageManager": "pnpm@10.29.2",
"engines": {
"node": ">=25 <26"
},
"main": "./v1/agegate.js",
"exports": {
".": "./v1/agegate.js",
"./easy": "./v1/easy-agegate.js"
},
"files": [
"v1",
"LICENSE",
"LICENSE.txt",
"NOTICE.txt",
"THIRD_PARTY_NOTICES.txt",
"README.md"
],
"scripts": {
"build": "node scripts/build.mjs",
"build:esm": "node scripts/build.mjs --esm",
"typecheck": "tsc -p tsconfig.json",
"test": "node --test"
},
"devDependencies": {
"esbuild": "^0.27.3"
},
"dependencies": {
"pako": "^2.1.0"
}
}