-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.48 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": "@range-security/range-sdk",
"version": "1.9.4",
"description": "SDK for easy custom alerts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --esModuleInterop --resolveJsonModule --declaration",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/src/index.js\"",
"example": "tsc-watch --onSuccess \"node dist/examples/alertProcessors.js\"",
"pushBlock": "tsc-watch --onSuccess \"node dist/tests/pushBlock.js\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"pub": "rm -rf dist && npm run build && npm publish --access public"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.6"
},
"dependencies": {
"@cosmjs/stargate": "^0.31.0",
"@cosmjs/tendermint-rpc": "^0.31.0",
"axios": "^1.4.0",
"dayjs": "^1.11.10",
"kafkajs": "^2.2.4",
"lru-cache": "^10.0.1",
"osmojs": "^16.14.0",
"pino": "^8.15.1",
"zod": "^3.21.4"
},
"repository": {
"type": "git",
"url": "https://github.com/rangesecurity"
}
}