forked from methodnumber13/asterdex-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.51 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "asterdex-sdk",
"version": "1.0.0",
"description": "Unofficial TypeScript SDK for AsterDEX cryptocurrency exchange - supporting both Spot and Futures trading with WebSocket streams",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"typecheck": "tsc --noEmit",
"docs": "typedoc src/index.ts",
"prepublishOnly": "npm run build && npm run lint && npm run test",
"release": "npm version patch && npm publish",
"clean": "rimraf dist",
"demo": "tsx ./examples/demo.ts"
},
"keywords": [
"asterdex",
"cryptocurrency",
"exchange",
"trading",
"spot",
"futures",
"websocket",
"api",
"sdk",
"typescript",
"dex",
"unofficial"
],
"author": "methodnumber13",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/methodnumber13/asterdex-sdk.git"
},
"bugs": {
"url": "https://github.com/methodnumber13/asterdex-sdk/issues"
},
"homepage": "https://github.com/methodnumber13/asterdex-sdk#readme",
"devDependencies": {
"@ethersproject/abi": "^5.8.0",
"@ethersproject/wallet": "^5.8.0",
"@types/node": "^24.0.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eth-abi": "^1.0.7",
"prettier": "^3.1.0",
"rimraf": "^6.0.0",
"tsx": "^4.20.5",
"typedoc": "^0.28.0",
"typescript": "^5.3.0",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^1.0.0",
"web3": "^4.16.0",
"web3-accounts": "^1.4.0",
"web3-eth-abi": "^4.4.1"
},
"dependencies": {
"dotenv": "^17.2.2",
"ws": "^8.14.2",
"web3": "^4.16.0",
"web3-eth-accounts": "^4.3.1"
},
"engines": {
"node": ">=18.0.0"
}
}