-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.24 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.24 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
{
"name": "windkit",
"version": "0.2.3",
"description": "Lightweight protocol to connect Vexanium DApps to Wind Wallet via PeerJS and VSR.",
"license": "MIT",
"author": "windstack",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"src/**",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/windvex/windkit.git"
},
"bugs": {
"url": "https://github.com/windvex/windkit/issues"
},
"homepage": "https://github.com/windvex/windkit#readme",
"keywords": [
"vexanium",
"vex",
"wind",
"wallet",
"web3",
"peerjs",
"webrtc",
"wharfkit",
"signing-request",
"vsr",
"blockchain"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node -e \"console.log('windkit ok')\"",
"pack:check": "npm pack --dry-run",
"publish:npm": "npm run pack:check && npm publish --access public"
},
"dependencies": {
"@wharfkit/abicache": "^1.2.2",
"@wharfkit/antelope": "^1.1.1",
"@wharfkit/signing-request": "^3.2.0",
"pako": "^2.1.0",
"peerjs": "^1.5.5"
},
"engines": {
"node": ">=18"
}
}