forked from coinbase/staking-client-library-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "@coinbase/staking-client-library-ts",
"version": "0.8.2",
"description": "Coinbase Staking API Typescript Library",
"repository": "https://github.com/coinbase/staking-client-library-ts.git",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf ./dist",
"gen": "npm run clean-gen && ./scripts/generate-client.sh",
"clean-gen": "rm -rf src/gen/*",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"lint": "eslint . --ext .ts --ignore-pattern 'dist/**/*' --ignore-pattern 'src/gen/**/*'",
"lint-fix": "eslint . --ext .ts --fix --ignore-pattern 'dist/**/*' --ignore-pattern 'src/gen/**/*'"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src/",
"dist/"
],
"dependencies": {
"@ethereumjs/tx": "^5.3.0",
"@solana/web3.js": "^1.91.3",
"bs58": "^6.0.0",
"node-jose": "^2.2.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/node-jose": "^1.1.10",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^51.0.1",
"prettier": "^3.0.3",
"prettier-eslint": "^16.0.0",
"rimraf": "^3.0.2",
"typescript": "^5.2.2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts"
}