-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 2.01 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
{
"name": "@coinbase/coinbase-sdk",
"author": "Coinbase Inc.",
"license": "ISC",
"description": "Coinbase Platform SDK",
"repository": "https://github.com/coinbase/coinbase-sdk-nodejs",
"version": "0.10.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint -c .eslintrc.json src/coinbase/**.ts",
"lint-fix": "eslint -c .eslintrc.json src/coinbase/*.ts --fix",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
"format-check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
"check": "tsc --noEmit",
"test": "npx jest --no-cache --testMatch=**/*_test.ts",
"test:dry-run": "npm install && npm ci && npm publish --dry-run",
"test:e2e": "npx jest --no-cache --testMatch=**/e2e.ts --coverageThreshold '{}'",
"test:types": "tsd --files src/tests/types.test-d.ts",
"clean": "rm -rf dist/*",
"build": "tsc",
"prepack": "tsc",
"docs": "typedoc --entryPoints ./src --entryPointStrategy expand --exclude ./src/tests/**/*.ts"
},
"files": [
"dist"
],
"dependencies": {
"@scure/bip32": "^1.4.0",
"abitype": "^1.0.6",
"axios": "^1.6.8",
"axios-mock-adapter": "^1.22.0",
"axios-retry": "^4.4.1",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"ethers": "^6.12.1",
"node-jose": "^2.2.0",
"secp256k1": "^5.0.0",
"viem": "^2.21.26"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@types/node-jose": "^1.1.13",
"@types/secp256k1": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}