-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.1 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@z-base/zero-knowledge-credentials",
"version": "1.0.2",
"description": "WebAuthn PRF credential discovery for zero-knowledge apps; derive opaque IDs and root keys from user-verifying authenticators.",
"keywords": [
"webauthn",
"passkeys",
"prf",
"fido2",
"hardware-tokens",
"zero-knowledge",
"credentials",
"opaque-identifier",
"cryptography",
"authentication",
"webcrypto",
"aes-gcm",
"hmac",
"typescript",
"cryptosuite",
"bytecodec",
"z-base"
],
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/z-base/zero-knowledge-credentials.git"
},
"bugs": {
"url": "https://github.com/z-base/zero-knowledge-credentials/issues"
},
"homepage": "https://github.com/z-base/zero-knowledge-credentials#readme",
"scripts": {
"format": "prettier . --write",
"build": "tsc -p tsconfig.json",
"test": "npm run build && node test/run-coverage.mjs && node test/e2e/run.mjs",
"bench": "npm run build && node benchmark/bench.js",
"prepare": "husky",
"prepublishOnly": "npm run test && npm run bench"
},
"c8": {
"all": true,
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.d.ts",
"test/**",
"benchmark/**",
"playwright.config.ts"
]
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"dependencies": {
"@z-base/bytecodec": "^1.1.0",
"@z-base/cryptosuite": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@playwright/test": "^1.58.0",
"@types/node": "^25.0.10",
"c8": "^10.1.3",
"esbuild": "^0.27.2",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"playwright": "^1.58.0",
"prettier": "^3.8.1",
"typescript": "^5.6.3"
}
}