-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.17 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
{
"name": "@tetherto/wdk-wallet-solana",
"version": "1.0.0-beta.12",
"description": "A simple package to manage BIP-32 wallets for the solana blockchain.",
"keywords": [
"wdk",
"wallet",
"bip-32",
"solana"
],
"author": "Tether",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/tetherto/wdk-wallet-solana.git"
},
"main": "index.js",
"type": "module",
"types": "./types",
"scripts": {
"build:types": "tsc",
"lint": "standard --env jest",
"lint:fix": "standard --fix --env jest",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns='tests/integration'",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns='tests/integration' --coverage",
"test:integration": "cross-env NODE_OPTIONS=--experimental-vm-modules jest tests/integration",
"test:integration:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest tests/integration --coverage"
},
"dependencies": {
"@noble/ed25519": "3.1.0",
"@noble/hashes": "2.2.0",
"@solana-program/system": "0.9.0",
"@solana-program/token": "0.7.0",
"@solana/addresses": "3.0.3",
"@solana/codecs": "3.0.3",
"@solana/functional": "3.0.3",
"@solana/keys": "3.0.3",
"@solana/rpc": "3.0.3",
"@solana/signers": "3.0.3",
"@solana/transaction-messages": "3.0.3",
"@solana/transactions": "3.0.3",
"@tetherto/wdk-failover-provider": "1.0.0-beta.2",
"@tetherto/wdk-wallet": "1.0.0-beta.14",
"bare-node-runtime": "^1.4.0",
"bip39": "3.1.0",
"micro-key-producer": "0.7.6",
"sodium-universal": "5.0.1"
},
"devDependencies": {
"@solana/kit": "4.0.0",
"cross-env": "7.0.3",
"jest": "^30.2.0",
"standard": "17.1.2",
"typescript": "5.8.3"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"bare": "./bare.js",
"default": "./index.js"
},
"./package": {
"default": "./package.json"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"standard": {
"ignore": [
"bare.js",
"tests/**/*.js"
]
}
}