-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "@coinbase-sample/core-ts",
"version": "0.2.2",
"description": "Coinbase TS Core used by other libraries and examples",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint . --ext .js,.ts,.mjs",
"format": "prettier --write \"**/*.{js,mjs,ts,tsx,json,css,md}\""
},
"repository": {
"type": "git",
"url": "git@github.com:coinbase-samples/core-ts.git"
},
"author": "sa@coinbase.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/coinbase-samples/core-ts/issues"
},
"homepage": "https://github.com/coinbase-samples/core-ts#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"dependencies": {
"axios": "^1.11.0",
"axios-retry": "^4.5.0"
}
}