-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.34 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.34 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
{
"name": "qweb3.js",
"version": "1.1.4",
"description": "Quantova Post-Quantum Web3 Client SDK — connect, manage post-quantum accounts, sign and broadcast transactions, and interact with QVM smart contracts.",
"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",
"qweb3",
"web3",
"post-quantum",
"quantum-resistant",
"pqc",
"falcon",
"sphincs",
"dilithium",
"blockchain",
"sdk"
],
"dependencies": {
"@quantova/api": "^1.0.16",
"@quantova/keyring": "^1.0.16",
"@quantova/util": "^1.0.16",
"@quantova/util-crypto": "^1.0.16",
"@quantova/falcon-wasm": "^1.0.16",
"@quantova/rpc-provider": "^1.0.16",
"axios": "^1.13.4"
},
"engines": {
"node": ">=18"
},
"author": "Quantova",
"homepage": "https://quantova.org",
"repository": {
"type": "git",
"url": "https://github.com/Quantova/Qweb3.js"
},
"bugs": {
"url": "https://github.com/Quantova/Qweb3.js/issues"
}
}