-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "@axiom-crypto/halo2-lib-js",
"version": "0.3.4",
"description": "Halo2 Javascript library",
"main": "index.js",
"scripts": {
"build": "rm -rf ./dist && tsc && node ./scripts/postTsc.js && pnpm build:docs",
"build:docs": "./node_modules/.bin/dts-bundle-generator ./dist/halo2lib/functions.d.ts -o src/shared/build.d.ts && node ./scripts/convertDTs.js && rm -rf ./src/shared/build.d.ts",
"test:vk": "./tests/test_vk.sh",
"test:constant": "./tests/test_constant.sh"
},
"keywords": [
"axiom",
"ethereum",
"zero knowledge",
"zk",
"coprocessor",
"crypto",
"halo2"
],
"author": "Intrinsic Technologies",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node": "^20.8.9",
"@types/prettier": "1.18.2",
"dts-bundle-generator": "^8.1.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@axiom-crypto/halo2-wasm": "0.3.4",
"ethers": "^6.8.0",
"prettier": "1.18.2"
},
"publishConfig": {
"directory": "dist"
}
}