-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.51 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.51 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
66
67
68
69
70
71
72
{
"name": "@opensea/wallet-adapters",
"version": "0.1.0",
"type": "module",
"description": "Provider-agnostic wallet adapters for signing and sending transactions across managed and local backends",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./viem": {
"types": "./dist/viem.d.ts",
"default": "./dist/viem.js"
},
"./ethers": {
"types": "./dist/ethers.d.ts",
"default": "./dist/ethers.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"lint": "biome check --config-path . .",
"lint:fix": "biome check --config-path . --write .",
"format": "biome format --config-path . --write .",
"format:check": "biome format --config-path . .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@noble/hashes": "2.0.1",
"@noble/curves": "1.9.1"
},
"peerDependencies": {
"viem": ">=2.0.0",
"ethers": ">=6.0.0"
},
"peerDependenciesMeta": {
"viem": {
"optional": true
},
"ethers": {
"optional": true
}
},
"devDependencies": {
"@types/node": "22.7.5",
"tsup": "8.5.1",
"typescript": "6.0.2",
"viem": "2.31.3",
"vitest": "3.2.4",
"@biomejs/biome": "^2.4.10"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"opensea",
"wallet",
"adapter",
"privy",
"turnkey",
"fireblocks",
"mpc",
"signing",
"web3"
],
"license": "MIT"
}