-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 KB
/
package.json
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
{
"name": "@zkpassport/test-utils",
"version": "0.2.2",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./asn": {
"types": "./dist/asn.d.ts",
"default": "./dist/asn.js"
},
"./test-helper": {
"types": "./dist/test-helper.d.ts",
"default": "./dist/test-helper.js"
},
"./sod-generator": {
"types": "./dist/sod-generator.d.ts",
"default": "./dist/sod-generator.js"
},
"./passport-generator": {
"types": "./dist/passport-generator.d.ts",
"default": "./dist/passport-generator.js"
},
"./circuits": {
"types": "./dist/circuits.d.ts",
"default": "./dist/circuits.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"default": "./dist/utils.js"
}
},
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc"
},
"devDependencies": {
"@noir-lang/types": "1.0.0-beta.1",
"@types/bun": "latest",
"@types/lapo__asn1js": "^1.2.5",
"@types/node": "^22.10.5",
"@types/node-forge": "^1.3.11",
"typescript": "^5.0.0"
},
"dependencies": {
"@aztec/bb.js": "0.67.0",
"@lapo/asn1js": "^2.0.4",
"@noble/ciphers": "^1.0.0",
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0",
"@noble/secp256k1": "^2.1.0",
"@noir-lang/noir_js": "1.0.0-beta.1",
"@noir-lang/noir_wasm": "1.0.0-beta.1",
"@peculiar/asn1-cms": "^2.3.13",
"@peculiar/asn1-ecc": "^2.3.14",
"@peculiar/asn1-rsa": "^2.3.13",
"@peculiar/asn1-schema": "^2.3.13",
"@peculiar/asn1-x509": "^2.3.13",
"@peculiar/webcrypto": "^1.5.0",
"@peculiar/x509": "^1.12.3",
"@zkpassport/poseidon2": "^0.5.1",
"@zkpassport/utils": "^0.2.2",
"date-fns": "^4.1.0",
"i18n-iso-countries": "^7.13.0",
"node-forge": "^1.3.1"
}
}