-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.26 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
{
"name": "ton-http-api",
"version": "2.0.8",
"description": "The lightweight TON Typescript Library",
"main": "dist/index.js",
"keywords": [
"ton",
"http",
"api",
"lightweight",
"client",
"library",
"crypto",
"blockchain",
"typescript",
"nodejs"
],
"author": "ndatg",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"docs": "rm -fr docs && typedoc src/index.ts",
"build": "rm -fr dist && tsc --declaration",
"release": "npm run build && npm publish",
"test": "jest --verbose --runInBand"
},
"repository": {
"type": "git",
"url": "git://github.com/ndatg/ton-http-api.git"
},
"bugs": {
"url": "https://github.com/ndatg/ton-http-api/issues"
},
"dependencies": {
"@ton/core": "^0.55.0",
"axios": "^1.6.2",
"events": "^3.3.0",
"ioredis": "^5.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
}
}