forked from gemlink/electrum-client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "@bilthon/electrum-client-ts",
"version": "0.1.30",
"description": "Electrum protocol client for node.js and browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --timeout 10000",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "tsc --build tsconfig.json",
"publush": "npm run build && npm publish --access public",
"postinstall": "tsc --outdir ./dist"
},
"dependencies": {
"rimraf": "^6.0.1",
"socket.io": "^4.5.1",
"websocket": "^1.0.29"
},
"devDependencies": {
"@types/node": "^20.4.2",
"chai": "^4.2.0",
"electrum-host-parse": "^0.1.1",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"fs": "0.0.1-security",
"mocha": "^6.2.0",
"typescript": "^5.5.3"
},
"homepage": "https://github.com/bilthon/electrum-client-ts#readme",
"repository": {
"type": "git",
"url": "git://github.com/bilthon/electrum-client-ts.git"
},
"bugs": {
"url": "https://github.com/bilthon/electrum-client-ts/issues"
},
"keywords": [
"client",
"electrum",
"bitcoin"
],
"engines": {
"node": ">=6"
},
"author": "Devzx",
"license": "MIT"
}