-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "@ethers-ext/utils-optimism",
"version": "6.0.0-beta.2",
"description": "Ethers extension package for Optimism-specific utilities.",
"dependencies": {
"ethers": "^6.5.0"
},
"devDependencies": {
"typescript": "^5.0.0"
},
"exports": {
".": {
"import": "./lib.esm/index.js",
"default": "./lib.commonjs/index.js"
}
},
"ethereum": "donations.ethers.eth",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/ethers-io"
}
],
"scripts": {
"auto-build": "npm run build -- -w",
"build": "tsc --build ./tsconfig.esm.json",
"build-all": "npm run build && npm run build-commonjs",
"build-clean": "npm run clean && npm run build-all",
"build-commonjs": "tsc --build ./tsconfig.commonjs.json",
"clean": "rm -rf lib.commonjs lib.esm && cp -r misc/basedirs/* .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "./lib.commonjs/index.js",
"module": "./lib.esm/index.js",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"keywords": [
],
"repository": {
"type": "git",
"url": "git://github.com/ethers-io/ext-utils-optimism.git"
},
"bugs": {
"url": "http://github.com/ethers-io/ext-utils-optimism/issues",
"email": "[email protected]"
},
"author": "Richard Moore <[email protected]>",
"license": "MIT"
}