-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.28 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": "tpu-client",
"version": "1.0.5",
"main": "lib/index.js",
"author": " <[email protected]>",
"license": "MIT",
"dependencies": {
"@matrixai/quic": "^1.3.0",
"@peculiar/webcrypto": "^1.4.6",
"@solana/web3.js": "^1.91.8",
"bs58": "^5.0.0",
"denque": "^2.0.1",
"selfsigned": "^2.4.1"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.0",
"rpc-websockets": "^7.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "ts-node build/index.ts",
"prettify": "prettier --check './src/**/*.ts'",
"prettify:fix": "prettier --write './src/**/*.ts'",
"lint": "eslint . --ext ts --quiet",
"lint:fix": "eslint . --ext ts --fix",
"test": "ts-node test/index.ts"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmvdz/tpu-client.git"
},
"bugs": {
"url": "https://github.com/lmvdz/tpu-client/issues"
},
"homepage": "https://github.com/lmvdz/tpu-client#readme",
"description": ""
}