-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.92 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
111
112
113
114
115
116
117
118
119
{
"name": "shell-sdk",
"version": "0.13.0",
"description": "TypeScript SDK for Shell Chain — build quantum-safe dApps before Q-Day.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"shell-sdk": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./address": {
"types": "./dist/address.d.ts",
"import": "./dist/address.js"
},
"./provider": {
"types": "./dist/provider.d.ts",
"import": "./dist/provider.js"
},
"./signer": {
"types": "./dist/signer.d.ts",
"import": "./dist/signer.js"
},
"./adapters": {
"types": "./dist/adapters.d.ts",
"import": "./dist/adapters.js"
},
"./keystore": {
"types": "./dist/keystore.d.ts",
"import": "./dist/keystore.js"
},
"./transactions": {
"types": "./dist/transactions.d.ts",
"import": "./dist/transactions.js"
},
"./contracts": {
"types": "./dist/contracts.d.ts",
"import": "./dist/contracts.js"
},
"./contracts/compiler": {
"types": "./dist/contracts-compiler.d.ts",
"import": "./dist/contracts-compiler.js"
},
"./system-contracts": {
"types": "./dist/system-contracts.d.ts",
"import": "./dist/system-contracts.js"
},
"./session": {
"types": "./dist/session.d.ts",
"import": "./dist/session.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./hdwallet": {
"types": "./dist/hdwallet.d.ts",
"import": "./dist/hdwallet.js"
}
},
"files": [
"dist",
"examples",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"contract:compile": "npm run build && node scripts/compile-contract-fixture.mjs",
"test:e2e:testnet": "npm run contract:compile && SHELL_SDK_E2E_TESTNET=1 node --test tests/pqvm.contract.testnet.e2e.test.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test tests/*.test.mjs"
},
"keywords": [
"shell-chain",
"sdk",
"viem",
"typescript",
"pq"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ShellDAO/shell-sdk.git"
},
"bugs": {
"url": "https://github.com/ShellDAO/shell-sdk/issues"
},
"homepage": "https://github.com/ShellDAO/shell-sdk#readme",
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^1.8.0",
"@noble/post-quantum": "^0.6.0",
"@scure/base": "^1.2.6",
"hash-wasm": "^4.12.0",
"viem": "^2.39.0"
},
"overrides": {
"tmp": "0.2.7",
"ws": "^8.21.0"
},
"peerDependencies": {
"solc": "^0.8.30"
},
"peerDependenciesMeta": {
"solc": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^24.0.0",
"solc": "^0.8.30",
"typescript": "^5.9.0"
}
}