-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.13 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.13 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
{
"name": "asterdex-client",
"version": "1.0.0",
"description": "Official AsterDEX API client for Node.js - Futures trading with TypeScript support",
"main": "index.js",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"files": [
"index.js",
"index.d.ts",
"src/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run test"
},
"keywords": [
"asterdex",
"cryptocurrency",
"trading",
"futures",
"api",
"client",
"bitcoin",
"crypto",
"defi"
],
"author": "AsterDEX",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"dotenv": "^16.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/asterdex/asterdex-client-js"
},
"bugs": {
"url": "https://github.com/asterdex/asterdex-client-js/issues"
},
"homepage": "https://github.com/asterdex/asterdex-client-js#readme"
}