-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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": "@exchange-gate.io/eg-sdk-js",
"version": "2.0.0",
"description": "Exchange-Gate.IO javascript browser/nodeJS SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/exchange-gate/eg-sdk-js.git"
},
"author": "ExchangeGate",
"license": "MIT",
"bugs": {
"url": "https://github.com/exchange-gate/eg-sdk-js/issues"
},
"homepage": "https://github.com/exchange-gate/eg-sdk-js#readme",
"main": "dist/eg-sdk.cjs.js",
"module": "dist/eg-sdk.esm.js",
"browser": "dist/eg-sdk.umd.js",
"types": "types/src/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"build:types": "tsc -p ./tsconfig.json --outDir types --module commonjs --declaration true && tsc-alias --dir types && rimraf ./types/src/Core ./types/src/index.js ./types/package.json",
"docs": "typedoc src --out docs",
"clean": "rimraf ./types ./dist ./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@types/consumable-stream": "^2.0.0",
"@types/socketcluster-client": "^16.0.0",
"@types/writable-consumable-stream": "^2.0.0",
"async-stream-emitter": "^4.0.0",
"axios": "^0.26.0",
"socketcluster-client": "^16.0.4"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"rollup": "^2.67.2",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.11",
"typescript": "^4.5.5",
"tsc-alias": "^1.7.0"
}
}