-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "@blockstalker/client-js",
"version": "0.2.9",
"description": "BlockStalker.IO (Algorand Blockchain Events) - Streaming Javascript client",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"exports": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "tsup src/main.ts --dts --format cjs,esm --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlockStalker/client-js.git"
},
"keywords": [
"blockstalker",
"algorand",
"algokit",
"algorand blockchain",
"algorand streaming",
"blockstalker.io"
],
"contributors": [
{
"name": "Eric Kirse",
"email": "team@blockstalker.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BlockStalker/client-js/issues"
},
"homepage": "https://github.com/BlockStalker/client-js#readme",
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.4.4"
},
"dependencies": {
"@microsoft/signalr": "^8.0.7",
"cross-fetch": "^4.0.0",
"query-string": "^7.0.1"
},
"workspaces": [
"./dist/*",
"./sandbox"
],
"engines": {
"node": ">=16"
}
}