-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 987 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 987 Bytes
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
{
"name": "qweb3.js",
"version": "1.1.0",
"description": "Quantova Post-Quantum Web3 Client SDK",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"bin": {
"qweb3-cli": "./src/cli/index.js"
},
"files": [
"index.js",
"index.mjs",
"index.d.ts",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node test.js",
"cli": "node ./src/cli/index.js"
},
"keywords": [
"quantova",
"web3",
"post-quantum",
"blockchain",
"qvm",
"dilithium",
"falcon",
"sphincs-plus",
"sdk"
],
"dependencies": {
"@quantova/api": "^1.0.2",
"@quantova/keyring": "^1.0.2",
"@quantova/util": "^1.0.2",
"@quantova/util-crypto": "^1.0.2",
"@quantova/falcon-wasm": "^1.0.2",
"@quantova/rpc-provider": "^1.0.2",
"axios": "^1.13.4"
},
"engines": {
"node": ">=18"
}
}