-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "zkcli-portal",
"type": "module",
"version": "0.0.0-development",
"description": "zkSync Portal module for zkcli",
"repository": {
"type": "git",
"url": "https://github.com/matter-labs/zkcli-portal.git"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"typecheck": "tsc -p . --noEmit",
"lint": "eslint . --ext ./src/* --fix --ignore-path .gitignore --no-error-on-unmatched-pattern --max-warnings=0",
"commitlint": "commitlint --edit"
},
"keywords": [
"portal",
"zkcli",
"zksync",
"era",
"test"
],
"author": "Matter Labs",
"license": "MIT",
"prettier": "@matterlabs/prettier-config",
"lint-staged": {
"./src/*": "npm run lint",
"**/*.ts": "tsc-files --noEmit"
},
"dependencies": {
"zksync-cli": "^1.2.0-alpha.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@matterlabs/eslint-config-typescript": "^1.1.2",
"@matterlabs/prettier-config": "^1.0.3",
"@semantic-release/changelog": "^6.0.3",
"@types/node": "^20.6.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"semantic-release": "^22.0.8",
"ts-node": "^10.9.1",
"tsc-files": "^1.1.4"
},
"publishConfig": {
"access": "public"
}
}