-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
55 lines (55 loc) · 1.16 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
{
"name": "@ton-api/streaming",
"version": "0.0.1-beta.0",
"description": "Realtime streaming SDK for tonapi.io",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup && npx rimraf ./dist/index.d.mts",
"test": "jest"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tonkeeper/tonapi-js/issues"
},
"homepage": "https://github.com/tonkeeper/tonapi-js/blob/main/packages/streaming#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tonkeeper/tonapi-js.git"
},
"keywords": [
"TON",
"Blockchain",
"API",
"TonApi",
"Realtime",
"Streaming"
],
"author": "Ton Apps",
"authors": [
{
"name": "siandreev"
}
],
"dependencies": {
"@ton-api/isomorphic-ws": "^0.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"dotenv": "^16.4.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}