-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 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
{
"name": "@zkpersona/noir-hmac",
"version": "0.1.0",
"description": "Hash-based Message Authentication Code (HMAC) implementation in Noir",
"keywords": [
"noir",
"hmac",
"authentication-code",
"sha256",
"sha512",
"noir-lang",
"noir-library",
"zkp",
"zero-knowledge-proofs",
"zk",
"aztec",
"ethereum",
"cryptography",
"privacy"
],
"license": "MIT",
"author": {
"name": "Vedant Chainani",
"email": "[email protected]",
"url": "https://zkpersona.xyz"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist/**",
"lib/**"
],
"scripts": {
"build": "tsup",
"dev": "vitest",
"test": "vitest run",
"format": "pnpm biome format",
"format:write": "pnpm biome format --write",
"release": "pnpm run build && changeset publish",
"version-packages": "changeset version",
"changeset": "changeset"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.28.1",
"@noir-lang/noir_codegen": "^1.0.0-beta.3",
"@types/node": "^22",
"dotenv": "^16.4.7",
"klarity": "^0.0.3",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"dependencies": {
"@noir-lang/noir_js": "^1.0.0-beta.3",
"@zkpersona/noir-helpers": "^0.2.0"
}
}