-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.19 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
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
{
"name": "coinbase-api",
"version": "1.0.5",
"description": "Node.js SDK for Coinbase's REST APIs and WebSockets, with TypeScript & strong end to end tests.",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && bash ./postBuild.sh",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts"
}
},
"type": "module",
"files": [
"dist/*"
],
"author": "Tiago Siebler (https://github.com/tiagosiebler)",
"contributors": [
"Jerko J (https://github.com/JJ-Cro)"
],
"dependencies": {
"axios": "^1.7.4",
"isomorphic-ws": "^4.0.1",
"jsonwebtoken": "^9.0.2",
"nanoid": "^3.3.7",
"ws": "^7.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.6",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"keywords": [
"coinbase",
"coinbase api",
"coinbase node",
"coinbase node api",
"api",
"sdk",
"coinbase sdk",
"websocket",
"rest",
"rest api",
"trading bots",
"nodejs",
"trading",
"cryptocurrency",
"bitcoin",
"best"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/tiagosiebler"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tiagosiebler/coinbase-api.git"
},
"bugs": {
"url": "https://github.com/tiagosiebler/coinbase-api/issues"
},
"homepage": "https://github.com/tiagosiebler/coinbase-api#readme"
}