-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
80 lines (80 loc) · 2.24 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
79
80
{
"name": "zksync-cli",
"type": "module",
"version": "0.0.0-development",
"description": "CLI tool that simplifies the process of developing applications and interacting with the ZKsync network",
"repository": {
"type": "git",
"url": "https://github.com/matter-labs/zksync-cli.git"
},
"main": "bin/index.js",
"bin": {
"zksync-cli": "bin/index.js"
},
"exports": {
"./lib": "./bin/lib/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "cross-env NODE_ENV=development node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint . --fix --no-error-on-unmatched-pattern --max-warnings=0",
"lint:spelling": "cspell lint .",
"commitlint": "commitlint --edit",
"test": "vitest",
"prepare": "node .husky/install.mjs"
},
"keywords": [
"zksync",
"era",
"cli"
],
"author": "Matter Labs",
"license": "MIT",
"prettier": "@matterlabs/prettier-config",
"dependencies": {
"chalk": "4.1.2",
"commander": "^11.0.0",
"compare-versions": "^6.1.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"ethers": "5.7.2",
"inquirer": "^8.1.4",
"ora": "^7.0.1",
"slugify": "^1.6.6",
"update-notifier": "^7.0.0",
"winston": "^3.10.0",
"zkcli-block-explorer": "^1.2.1",
"zkcli-dockerized-node": "^1.1.0",
"zkcli-in-memory-node": "^1.0.8",
"zkcli-portal": "^1.0.3",
"zksync-ethers": "5.9.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.8.0",
"@matterlabs/prettier-config": "^1.0.3",
"@semantic-release/changelog": "^6.0.3",
"@types/inquirer": "^8.0.2",
"@types/node": "^18.17.12",
"@types/update-notifier": "^6.0.8",
"cspell": "^8.13.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "3.3.3",
"semantic-release": "^22.0.8",
"ts-node": "^10.9.1",
"tsc-files": "^1.1.4",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.1",
"vitest": "^2.0.4"
},
"publishConfig": {
"access": "public"
}
}