-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "zk-regex-o1js",
"version": "0.2.0",
"description": "CLI tool for compiling regex patterns into o1js ZK circuits",
"author": "Shigoto-dev19",
"license": "Apache-2.0",
"keywords": [
"mina",
"blockhain",
"zkapp",
"zero knowledge",
"o1js",
"regex",
"compiler"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Shigoto-dev19/zk-regex-o1js.git"
},
"bugs": {
"url": "https://github.com/Shigoto-dev19/zk-regex-o1js/issues"
},
"bin": {
"zk-regex": "./build/src/cli.js",
"zkr": "./build/src/cli.js"
},
"scripts": {
"build": "tsc",
"buildw": "tsc --watch",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"testw": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "npx eslint src/* --fix",
"zkapp": "npm run build && node build/src/zkapp.js"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.7.0",
"eslint-plugin-o1js": "^0.4.0",
"jest": "^27.3.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.7",
"typescript": "^4.7.2"
},
"peerDependencies": {
"o1js": "1.*"
},
"dependencies": {
"commander": "^12.1.0"
}
}