-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.87 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
{
"name": "@validpay/node-sdk",
"version": "0.10.0",
"description": "Official ValidPay Node.js SDK — client-side AES-256-GCM encryption + commitment hashing + split-key + selective disclosure + revocation + QR placement. Zero required production dependencies.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -b tsconfig.contract.json && tsc --noEmit",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20"
},
"keywords": [
"validpay",
"encryption",
"aes-256-gcm",
"document-verification",
"check-fraud",
"authentication",
"selective-disclosure",
"split-key",
"blind-escrow"
],
"homepage": "https://github.com/ValidPay-io/validpay-node-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/ValidPay-io/validpay-node-sdk.git"
},
"bugs": {
"url": "https://github.com/ValidPay-io/validpay-node-sdk/issues"
},
"license": "MIT",
"author": "ValidPay",
"peerDependencies": {
"pdf-lib": ">=1.17.0",
"pdfjs-dist": ">=4.0.0",
"qrcode": ">=1.5.0",
"sharp": ">=0.33.0"
},
"peerDependenciesMeta": {
"pdf-lib": {
"optional": true
},
"pdfjs-dist": {
"optional": true
},
"qrcode": {
"optional": true
},
"sharp": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/qrcode": "^1.5.5",
"jsqr": "^1.4.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.7.284",
"qrcode": "^1.5.4",
"sharp": "^0.34.4",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
}
}