-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.87 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@hoprnet/hopr-sdk",
"version": "2.1.10",
"description": "A SDK for HOPRd's Rest API functions",
"author": "HOPR Association",
"license": "GPL-3.0",
"main": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./types": "./dist/types/index.js",
"./api": "./dist/api/index.js",
"./utils": "./dist/utils/index.js",
"./web3": "./dist/web3/index.js"
},
"repository": "[email protected]:hoprnet/hopr-sdk.git",
"keywords": [
"hopr-sdk",
"hopr",
"hoprd",
"adapter",
"apiAdapter"
],
"bugs": {
"url": "https://github.com/hoprnet/hopr-sdk/issues"
},
"scripts": {
"login": "npx google-artifactregistry-auth",
"build": "tsup",
"pack": "tsup && yarn pack",
"lint": "tsc",
"lint:ci": "tsc",
"format": "prettier --write src/ e2e/ .github/ *.js *.ts *.json *.md",
"format:ci": "prettier --check src/ e2e/ .github/ *.js *.ts *.json *.md",
"test": "jest --coverage src/",
"test:e2e": "bash e2e/start.sh",
"docs": "typedoc --plugin typedoc-plugin-zod"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/ws": "^8.5.10",
"google-artifactregistry-auth": "3.1.2",
"jest": "^29.7.0",
"nock": "14.0.0-beta.5",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-zod": "^1.1.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"debug": "^4.3.4",
"isomorphic-ws": "^5.0.0",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"publishConfig": {
"access": "public"
}
}