-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
{
"name": "@chia/blockchain-client",
"version": "1.0.0",
"description": "TypeScript client for connecting to Chia blockchain fullnode peer network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "npm run build",
"dev": "ts-node-dev --respawn --transpile-only example/usage.ts"
},
"dependencies": {
"@dignetwork/datalayer-driver": "^0.1.35",
"eventemitter3": "^5.0.1",
"node-cache": "^5.1.2",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.17",
"winston": "^3.10.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^24.0.10",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"keywords": [
"chia",
"blockchain",
"p2p",
"typescript",
"fullnode"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}