-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "@tensor-hq/smart-rpc",
"version": "1.1.4",
"description": "Intelligent transport layer for Solana RPCs.",
"sideEffects": false,
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"/dist/esm/**/*",
"/dist/cjs/**/*"
],
"scripts": {
"test": "yarn ts-mocha -p ./tsconfig.cjs.json tests/**/*.test.ts",
"build": "rm -rf ./dist && yarn tsc && yarn tsc -p tsconfig.cjs.json",
"publish:private": "yarn build && yarn npm publish",
"publish:public": "yarn build && npm publish --access public --registry https://registry.npmjs.org",
"publish:all": "yarn publish:private && yarn publish:public"
},
"repository": "https://github.com/tensor-hq/smart-rpc.git",
"license": "MIT",
"publishConfig": {
"@tensor-hq:registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@solana/web3.js": "^1.91.1",
"ioredis": "^5.3.2",
"rate-limiter-flexible": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.10.5",
"@types/semaphore": "^1.1.1",
"@types/ws": "^8",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}