-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 989 Bytes
/
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
{
"name": "core-ts",
"version": "0.1.0",
"description": "Coinbase TS Core used by other libraries and examples",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,md}\""
},
"repository": {
"type": "git",
"url": "https://github.com/cfluke-cb/core-ts.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/cfluke-cb/core-ts/issues"
},
"homepage": "https://github.com/cfluke-cb/core-ts#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9",
"axios-retry": "^4.5.0"
}
}