-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 1.91 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@delvtech/evm-client",
"version": "0.2.3",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cache": {
"types": "./dist/cache.d.ts",
"default": "./dist/cache.js"
},
"./contract": {
"types": "./dist/contract.d.ts",
"default": "./dist/contract.js"
},
"./errors": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.js"
},
"./network": {
"types": "./dist/network.d.ts",
"default": "./dist/network.js"
},
"./stubs": {
"types": "./dist/stubs.d.ts",
"default": "./dist/stubs.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"cache": [
"./dist/cache.d.ts"
],
"contract": [
"./dist/contract.d.ts"
],
"errors": [
"./dist/errors.d.ts"
],
"network": [
"./dist/network.d.ts"
],
"stubs": [
"./dist/stubs.d.ts"
]
}
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"test:watch": "vitest --reporter=verbose",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"watch": "tsup --watch"
},
"peerDependencies": {
"sinon": "^17.0.1"
},
"peerDependenciesMeta": {
"sinon": {
"optional": true
}
},
"dependencies": {
"lru-cache": "^10.0.1",
"fast-safe-stringify": "^2.1.1"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/sinon": "^17.0.3",
"abitype": "^1.0.0",
"dotenv": "^16.4.2",
"eslint": "^8.56.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}