-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "ethernal-light",
"version": "0.1.13",
"description": "Light version of Ethernal CLI that connects directly to the queuing backend",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"bin": {
"ethernal-light": "lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tryethernal/ethernal-cli-light.git"
},
"files": [
"lib/**/*",
"CHANGELOG.md"
],
"keywords": [
"ethernal",
"ethereum",
"block-explorer",
"evm"
],
"author": "Antoine de Chevigné",
"license": "MIT",
"bugs": {
"url": "https://github.com/tryethernal/ethernal-cli-light/issues"
},
"homepage": "https://www.tryethernal.com",
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"ansi-regex": ">=6.0.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"typescript": "5.3.3"
},
"dependencies": {
"axios": "^1.4.0",
"bullmq": "^3.2.2",
"viem": "^1.20.2"
}
}