-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.36 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
108
109
110
{
"name": "@claw_wallet_sdk/claw_wallet",
"version": "1.0.2",
"description": "TypeScript SDK for the Claw Wallet sandbox HTTP API and signer adapters",
"keywords": [
"claw",
"wallet",
"sandbox",
"openapi"
],
"homepage": "https://www.clawwallet.cc/",
"bugs": {
"url": "https://github.com/BitsLabSec/claw_wallet_sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BitsLabSec/claw_wallet_sdk.git"
},
"license": "ISC",
"author": "clawwallet",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./solana": {
"types": "./dist/solana/solana.d.ts",
"import": "./dist/solana/solana.js",
"default": "./dist/solana/solana.js"
},
"./sui": {
"types": "./dist/sui/sui.d.ts",
"import": "./dist/sui/sui.js",
"default": "./dist/sui/sui.js"
},
"./viem": {
"types": "./dist/evm/viem.d.ts",
"import": "./dist/evm/viem.js",
"default": "./dist/evm/viem.js"
},
"./ethers": {
"types": "./dist/evm/ethers.d.ts",
"import": "./dist/evm/ethers.js",
"default": "./dist/evm/ethers.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"codegen": "openapi-typescript ../sandbox/handlers/docs/openapi/openapi.yaml -o src/generated/paths.ts",
"build": "tsc",
"test:fixtures": "npm run build && node test/lifecycle-fixtures.mjs",
"test:unit": "npm run build && node test/unit.encoding.mjs && node test/unit.signing.mjs && node test/unit.history.mjs && node test/unit.evm-adapters.mjs && node test/unit.chain-support.mjs && node test/unit.claw-wallet.mjs && node test/unit.chain-operations.mjs",
"test:openapi-public": "node test/integration.openapi-public.mjs",
"test:sandbox-readonly": "npm run build && node test/integration.sandbox-readonly.mjs",
"test:integration-kite": "npm run build && node test/integration.kite.mjs",
"test:integration": "npm run build && node test/run-integration.mjs",
"test:policy-ttl": "npm run build && node test/integration.policy-ttl.mjs",
"test:policy-e2e": "npm run build && node test/integration.policy-e2e.mjs",
"test:pack-consumer": "npm run build && node test/pack-consumer.mjs",
"test:all": "npm run test:fixtures && npm run test:unit && npm run test:openapi-public && npm run test:sandbox-readonly && npm run test:pack-consumer && npm run test:integration",
"prepublishOnly": "npm run build && npm run test:unit && npm run test:pack-consumer"
},
"dependencies": {
"openapi-fetch": "^0.17.0"
},
"devDependencies": {
"@mysten/sui": "^2.9.1",
"@solana/web3.js": "^1.98.4",
"ethers": "^6.16.0",
"openapi-typescript": "^7.13.0",
"typescript": "^5.9.3",
"viem": "^2.47.6"
},
"peerDependencies": {
"@mysten/sui": "^2.9.1",
"@solana/web3.js": "^1.98.4",
"ethers": "^6.14.0",
"viem": "^2.21.0"
},
"peerDependenciesMeta": {
"@mysten/sui": {
"optional": true
},
"@solana/web3.js": {
"optional": true
},
"ethers": {
"optional": true
},
"viem": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}