-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 957 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
36
{
"name": "walletprovider-ts",
"version": "0.0.4",
"description": "Server Side Wallet Providers",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"lint_ts": "./node_modules/.bin/eslint --fix --ext .ts src",
"lint": "npm run lint_ts",
"unit": "npm run build && npm run nobuild:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/GOATNetwork/walletprovider-ts"
},
"files": [
"src",
"lib"
],
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"bitcoin-core": "^4.2.0",
"bitcoinjs-lib": "6.1.5",
"ecpair": "^2.0.1"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-unused-imports": "^2.0.0",
"typescript": "^5.3.3"
},
"license": "MIT"
}