-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.46 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": "@windranger-io/windranger-tools-ethers",
"version": "1.0.2",
"license": "Apache-2.0",
"description": "Strongly-typed zero-code handling for events and contracts",
"keywords": [
"solidity",
"ethers",
"smart-contract",
"ethereum",
"blockchain",
"contract",
"event"
],
"repository": {
"type": "git",
"url": "git+https://github.com/windranger-io/windranger-tools-ethers"
},
"author": {
"name": "Red Cyrax",
"url": "https://github.com/cyraxred"
},
"files": [
"dist/*",
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"ethers": "^5.6.9",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "10.8.1",
"typescript": "4.7.4",
"typescript-strict-plugin": "^2.0.1"
},
"dependencies": {},
"scripts": {
"build": "npm run clean; tsc && tsc-strict",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"package": "npm run build && npm pack"
}
}