-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 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
48
49
50
51
52
53
54
55
{
"name": "@eosrio/hyperion-stream-client",
"version": "1.0.4",
"description": "Streaming Client for Hyperion History",
"main": "./lib/esm/index.js",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./esm": {
"import": "./lib/esm/index.js"
},
"./cjs": {
"require": "./lib/cjs/index.js"
}
},
"type": "module",
"scripts": {
"build:esm": "tsc",
"build:esm:watch": "tsc --watch",
"build:cjs": "tsc --p tsconfig.commonjs.json",
"build:webpack": "webpack",
"build:webpack:watch": "webpack --watch",
"build:all": "npm run build:esm && npm run build:cjs && npm run fix-hybrid-packages && npm run build:webpack",
"fix-hybrid-packages": "node scripts/create-dist-packages.mjs",
"test:esm:debug": "node examples/esm_import.mjs --inspect"
},
"repository": "eosrio/hyperion-stream-client",
"author": {
"name": "EOS Rio",
"url": "https://eosrio.io"
},
"engines": {
"node": ">=16"
},
"license": "MIT",
"dependencies": {
"async": "^3.2.4",
"socket.io-client": "^4.6.1",
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@types/async": "^3.2.20",
"@types/node": "^20.1.0",
"ts-loader": "^9.4.2",
"typescript": "5.0.4",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0"
},
"bugs": {
"url": "https://github.com/eosrio/hyperion-stream-client/issues"
},
"homepage": "https://github.com/eosrio/hyperion-stream-client#readme"
}