-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.65 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
{
"name": "@solarity/zktype",
"version": "0.4.2",
"description": "Unleash TypeScript bindings for Circom circuits",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "husky",
"build": "tsc",
"test": "mocha --recursive 'test/**/*.ts' --exit",
"coverage": "prepare-test && nyc mocha --recursive 'test/**/*.ts' --exit",
"lint-fix": "prettier --write '**/*.ts'",
"publish-to-npm": "npm run build && npm run lint-fix && rm -rf dist/core/templates && cp -rf src/core/templates dist/core/templates && npm publish ./ --access public"
},
"nyc": {
"reporter": [
"html",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dl-solarity/zktype.git"
},
"keywords": [
"distributedlab",
"solarity",
"circom",
"zkp"
],
"author": "Distributed Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/dl-solarity/zktype/issues"
},
"homepage": "https://github.com/dl-solarity/zktype#readme",
"dependencies": {
"ejs": "3.1.10",
"prettier": "3.3.3",
"typescript": "5.5.4"
},
"peerDependencies": {
"@solarity/zkit": "^0.3.0-rc.0"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/chai-as-promised": "^7.1.8",
"@types/ejs": "^3.1.5",
"@types/mocha": "^10.0.6",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"circomlib": "^2.0.5",
"hardhat": "^2.22.5",
"husky": "^9.0.11",
"mocha": "^10.5.2",
"nyc": "^17.0.0",
"snarkjs": "^0.7.4",
"ts-node": "^10.9.2"
}
}