forked from erhant/circomkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
70
71
72
73
74
75
76
77
78
{
"name": "circomkit",
"version": "0.0.20",
"description": "A Circom development environment",
"author": "erhant",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"bin": "dist/bin/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/erhant/circomkit#readme",
"repository": {
"type": "git",
"url": "https://github.com/erhant/circomkit.git"
},
"bugs": {
"url": "https://github.com/erhant/circomkit/issues/"
},
"scripts": {
"build": "npx tsc -p tsconfig.build.json",
"prebuild": "rimraf dist/",
"cli": "yarn build && node ./dist/bin",
"test": "npx mocha",
"pretest": "rimraf build/",
"check": "npx tsc --noEmit",
"style": "yarn format && yarn lint",
"lint": "npx eslint '**/*.ts' && echo 'All good!'",
"format": "npx prettier --check ./src/**/*.ts ./tests/**/*.ts"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/mocha-each": "^2.0.0",
"@types/node": "^18.11.18",
"@types/snarkjs": "^0.7.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^10.2.0",
"mocha-each": "^2.0.1",
"prettier": "^3.1.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"chai": "^4.3.7",
"circom_tester": "^0.0.19",
"loglevel": "^1.8.1",
"snarkjs": "^0.7.0"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid",
"printWidth": 120
},
"keywords": [
"circom",
"zero knowledge",
"snarkjs",
"typescript",
"cli",
"tooling",
"blockchain"
]
}