-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "jito-js-rpc",
"version": "0.1.0",
"description": "JavaScript RPC client for Jito",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest",
"lint": "eslint .",
"example": "node examples/basic_usage.js",
"basic_txn": "node examples/basic_txn.js",
"basic_bundle": "node examples/basic_bundle.js"
},
"repository": {
"type": "git",
"url": "git https://github.com/jito-labs/jito-js-rpc.git"
},
"keywords": [
"jito",
"rpc",
"client",
"javascript"
],
"author": "Jito Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/jito-labs/jito-js-rpc/issues"
},
"homepage": "https://github.com/jito-labs/jito-js-rpc#readme",
"dependencies": {
"@solana/web3.js": "^1.95.3",
"axios": "^1.7.7"
},
"devDependencies": {
"eslint": "^7.32.0",
"jest": "^27.0.6"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"publishConfig": {
"access": "public"
}
}