-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 849 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 849 Bytes
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
{
"name": "@frontiercompute/zap1",
"version": "0.1.3",
"description": "ZAP1 Merkle proof verification for JavaScript/TypeScript - WASM-powered BLAKE2b-256",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/",
"wasm/"
],
"scripts": {
"build": "mkdir -p dist && cp src/index.js dist/index.js && cp src/index.d.ts dist/index.d.ts",
"test": "node test/test.js"
},
"keywords": [
"zcash",
"blake2b",
"merkle",
"proof",
"zap1",
"wasm"
],
"author": "Zk-nd3r <zk_nd3r@frontiercompute.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Frontier-Compute/zap1-js"
}
}