-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.78 KB
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
{
"name": "sumer-sdk",
"version": "6.0.3",
"description": "SDK that allows observing EVM-based provider requests",
"author": "Sumer Communities SL (by Wagmi Venture Studio) <dev@getsumer.com>",
"license": "AGPL-3.0-only",
"main": "build/module/index.js",
"module": "build/module/index.js",
"types": "build/types/index.d.ts",
"homepage": "https://getsumer.com/",
"repository": {
"type": "git",
"url": "https://github.com/getsumer/sumer-sdk.git"
},
"bugs": "https://github.com/getsumer/sumer-sdk/issues",
"scripts": {
"prepare": "husky install",
"clean": "rm -rf ./build",
"build": "NODE_ENV=production npm run build:module && npm run build:types",
"build:module": "tsc -p tsconfig.module.json",
"build:types": "tsc -p tsconfig.types.json",
"build:watch": "tsc --build -w",
"test": "jest --colors",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"preversion": "npm run build"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"bowser": "^2.11.0",
"ethers": "^5.7.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/jest": "^27.5.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"utf-8-validate": "^5.0.10",
"bufferutil": "^4.0.7",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"jest-ts-auto-mock": "^2.1.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"ts-auto-mock": "^3.6.2",
"ts-jest": "^27.1.3",
"typescript": "^4.8.3"
},
"files": [
"build",
"LICENSE",
"README.md"
],
"keywords": [
"dapps",
"evm",
"dev-tool",
"web3",
"ethereum",
"monitoring",
"observability"
]
}