-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
87 lines (87 loc) · 2.9 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@bloxroute/solana-trader-client-ts",
"version": "2.2.3",
"description": "Solana Trader API SDK",
"type": "module",
"exports": {
".": {
"types": {
"default": "./dist/index.d.ts"
},
"browser": {
"require": "./dist/browser/index.cjs",
"default": "./dist/browser/index.js"
},
"default": {
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
}
}
},
"main": "./dist/node/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"./bxsolana/",
"./dist/",
"./examples/"
],
"scripts": {
"start": "node --experimental-specifier-resolution=node --loader ts-node/esm ./trading_examples/raydium.ts",
"test": "echo \"No test specified\"",
"build": "npm run esbuild && npm run types",
"clean": "rm -rf dist",
"esbuild": "node build.mjs",
"types": "tsc --emitDeclarationOnly",
"release": "npm run clean && npm run build && npm publish",
"lintCI": "eslint --max-warnings 0 .",
"lint": "eslint --fix .",
"format": "prettier --config .prettierrc -l './**/*.ts' --write",
"formatCI": "prettier --config .prettierrc -l './**/*.ts'",
"proto": "pb-gen-ts --entry-path ./solana-trader-proto/proto --out-dir=./bxsolana/proto ./solana-trader-proto/proto/api.proto --ext-in-import=' '"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloXroute-Labs/solana-trader-client-ts.git"
},
"author": "bloXroute",
"license": "MIT",
"bugs": {
"url": "https://github.com/bloXroute-Labs/solana-trader-client-ts/issues"
},
"homepage": "https://github.com/bloXroute-Labs/solana-trader-client-ts#readme",
"dependencies": {
"@grpc/grpc-js": "^1.10.2",
"@pbkit/grpc-client": "^0.0.3",
"@solana/web3.js": "1.73.2",
"axios": "1.1.2",
"bs58": "^5.0.0",
"dotenv": "^16.0.1",
"esbuild": "^0.16.7",
"google-protobuf": "^3.20.1",
"isomorphic-ws": "5.0.0",
"np": "^10.0.6",
"pbkit": "^0.0.53",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"websocket-iterator": "^1.0.1",
"ws": "^8.8.0"
},
"devDependencies": {
"@protobuf-ts/plugin": "^2.7.0",
"@types/google-protobuf": "^3.15.6",
"@types/node": "^18.7.18",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"esbuild": "0.16.14",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"ts-proto": "^1.115.5"
}
}