-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "chia-agent",
"version": "14.4.0",
"author": "ChiaMineJP <[email protected]>",
"description": "chia rpc/websocket client library",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Chia-Mine/chia-agent.git"
},
"bugs": "https://github.com/Chia-Mine/chia-agent/issues",
"main": "./index.js",
"bin": {
"chia-agent": "./bin/cli.js"
},
"scripts": {
"build": "node ./pre_publish.js && tsc --project tsconfig.json --allowJS false --declaration --declarationDir ./build --outDir ./build",
"build:prod": "node ./pre_publish.js --prod && tsc --project tsconfig.json --allowJS false --declaration --declarationDir ./dist --outDir ./dist",
"test": "jest",
"lint": "eslint --ext '.ts,js' ./src/"
},
"keywords": [
"chia",
"xch",
"crypto",
"rpc",
"websocket",
"pool",
"typescript"
],
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"@chiamine/json-bigint": "^1.0.3",
"ws": "^8.18.0",
"yaml": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.5",
"jest": "^29.7.0",
"typescript": "^5.4.5"
}
}