-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
69 lines (69 loc) · 1.62 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
{
"name": "@turnkey/ethers",
"version": "0.19.11",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"description": "Turnkey Signer for Ethers",
"keywords": [
"Turnkey",
"Ethers",
"ethers.js"
],
"author": {
"name": "Turnkey",
"url": "https://turnkey.com/"
},
"homepage": "https://github.com/tkhq/sdk",
"bugs": {
"url": "https://github.com/tkhq/sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tkhq/sdk.git",
"directory": "packages/ethers"
},
"files": [
"dist/",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
"build": "rollup -c",
"clean": "rimraf ./dist ./.cache",
"compile:contracts": "hardhat compile",
"test": "jest",
"typecheck": "tsc -p tsconfig.typecheck.json"
},
"peerDependencies": {
"ethers": "^5.0.0"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@turnkey/http": "workspace:*",
"@turnkey/api-key-stamper": "workspace:*"
},
"devDependencies": {
"@ethersproject/experimental": "^5.7.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.9.0",
"ethers": "^5.0.0",
"hardhat": "^2.12.7"
},
"engines": {
"node": ">=18.0.0"
}
}