-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.55 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@sei-js/sei-global-wallet",
"description": "Sei Global Wallet is a library to support Dynamic Global Wallets",
"version": "1.4.1",
"repository": {
"type": "git",
"url": "https://github.com/sei-protocol/sei-js.git",
"directory": "packages/sei-global-wallet"
},
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"license": "ISC",
"scripts": {
"build": "rimraf dist && pnpm run build:types && pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
"build:esm": "tsc --outDir dist/esm --module esnext",
"build:types": "tsc --project ./tsconfig.declaration.json",
"test": "jest"
},
"dependencies": {
"@dynamic-labs/global-wallet-client": "^4.60.1",
"@wallet-standard/wallet": "^1.1.0"
},
"devDependencies": {
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@dynamic-labs/ethereum-aa": "^4.15.0",
"@solana/wallet-standard-features": "^1.2.0",
"@solana/web3.js": "^1.92.1",
"@wallet-standard/base": "^1.0.1",
"@wallet-standard/features": "^1.0.3",
"@wallet-standard/wallet": "^1.1.0",
"@zerodev/sdk": "5.4.36",
"viem": "^2.7.12"
},
"peerDependenciesMeta": {
"viem": {
"optional": true
},
"@solana/web3.js": {
"optional": true
},
"@solana/wallet-standard-features": {
"optional": true
},
"@wallet-standard/features": {
"optional": true
},
"@wallet-standard/base": {
"optional": true
},
"@wallet-standard/wallet": {
"optional": true
},
"@zerodev/sdk": {
"optional": true
},
"@dynamic-labs/ethereum-aa": {
"optional": true
}
},
"typesVersions": {
"*": {
"eip6963": [
"./dist/types/eip6963.d.ts"
],
"ethereum": [
"./dist/types/ethereum.d.ts"
],
"solana": [
"./dist/types/solana.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./eip6963": {
"types": "./dist/types/eip6963.d.ts",
"import": "./dist/esm/eip6963.js",
"default": "./dist/cjs/eip6963.js"
},
"./ethereum": {
"types": "./dist/types/ethereum.d.ts",
"import": "./dist/esm/ethereum.js",
"default": "./dist/cjs/ethereum.js"
},
"./solana": {
"types": "./dist/types/solana.d.ts",
"import": "./dist/esm/solana.js",
"default": "./dist/cjs/solana.js"
},
"./zerodev": {
"types": "./dist/types/zerodev.d.ts",
"import": "./dist/esm/zerodev.js",
"default": "./dist/cjs/zerodev.js"
}
}
}