-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.3 KB
/
package.json
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
120
121
122
123
124
125
126
{
"name": "@theqrl/zond-wallet-provider",
"version": "0.1.0",
"description": "A JavaScript Zond provider that connects to the wallet over a stream",
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./json-rpc-engine": {
"import": "./dist/jsonRpcEngine.js",
"require": "./dist/jsonRpcEngine.cjs"
},
"./json-rpc-middleware-stream": {
"import": "./dist/jsonRpcMiddlewareStream.js",
"require": "./dist/jsonRpcMiddlewareStream.cjs"
},
"./object-multiplex": {
"import": "./dist/objectMultiplex.js",
"require": "./dist/objectMultiplex.cjs"
},
"./post-message-stream": {
"import": "./dist/postMessageStream.js",
"require": "./dist/postMessageStream.cjs"
},
"./providers": {
"import": "./dist/providers.js",
"require": "./dist/providers.cjs"
},
"./rpc-errors": {
"import": "./dist/rpcErrors.js",
"require": "./dist/rpcErrors.cjs"
},
"./safe-event-emitter": {
"import": "./dist/safeEventEmitter.js",
"require": "./dist/safeEventEmitter.cjs"
},
"./superstruct": {
"import": "./dist/superstruct.js",
"require": "./dist/superstruct.cjs"
},
"./utils": {
"import": "./dist/utils.js",
"require": "./dist/utils.cjs"
}
},
"scripts": {
"test": "jest",
"build": "tsc && vite build",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@noble/hashes": "^1.5.0",
"@scure/base": "^1.1.9",
"@types/chrome": "^0.0.279",
"@types/debug": "^4.1.12",
"@types/jest-when": "^3.5.5",
"@types/lodash": "^4.17.12",
"@types/once": "^1.4.5",
"@types/readable-stream": "^4.0.16",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@types/webextension-polyfill": "^0.12.1",
"babel-jest": "^29.7.0",
"debug": "^4.3.7",
"detect-browser": "^5.3.0",
"extension-port-stream": "^4.2.0",
"fast-deep-equal": "^3.1.3",
"fast-safe-stringify": "^2.1.1",
"is-email": "^1.0.2",
"is-stream": "^2.0.1",
"jest": "^27.5.1",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^27.5.1",
"jest-when": "^3.6.0",
"once": "^1.4.0",
"path": "^0.12.7",
"pony-cause": "^2.1.11",
"readable-stream": "^4.5.2",
"semver": "^7.6.3",
"stdio-mock": "^1.2.0",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typescript": "~5.6.2",
"util": "^0.12.5",
"uuid": "^10.0.0",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.3.0",
"webextension-polyfill": "^0.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theQRL/zond-wallet-provider.git"
},
"author": "The Quantum Resistant Ledger",
"license": "MIT",
"bugs": {
"url": "https://github.com/theQRL/zond-wallet-provider/issues"
},
"homepage": "https://github.com/theQRL/zond-wallet-provider#readme",
"keywords": [
"zond",
"blockchain",
"wallet",
"provider",
"browser",
"dapp",
"extension",
"qrl",
"quantum",
"resistant",
"ledger",
"web3",
"crypto"
]
}