@zkclaw/credentials 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zkclaw/credentials",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"import": "./dist/index.js"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"src/circuit/target/*.json"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build:circuit": "cd src/circuit && nargo compile && bb write_vk -b target/main.json -o target/vkey",
|
|
17
|
+
"build": "tsup src/index.ts --format esm --target node18",
|
|
18
|
+
"prepublishOnly": "bun run build",
|
|
19
|
+
"test": "bun test",
|
|
20
|
+
"test:circuit": "cd src/circuit && nargo test"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@aztec/bb.js": "^0.61.0",
|
|
24
|
+
"@noir-lang/noir_js": "^0.38.0",
|
|
25
|
+
"viem": "^2.21.55"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/bun": "latest",
|
|
29
|
+
"tsup": "^8.0.0",
|
|
30
|
+
"typescript": "^5.0.0"
|
|
31
|
+
}
|
|
32
|
+
}
|