@pythnetwork/hermes-client 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pythnetwork/hermes-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Pyth Hermes Client",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Pyth Data Association"
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"build": "tsc",
|
|
26
26
|
"generate-hermes-api-types": "openapi-zod-client https://hermes.pyth.network/docs/openapi.json --output src/zodSchemas.ts && prettier --write src/zodSchemas.ts",
|
|
27
27
|
"check-hermes-api-types": "git diff --exit-code src/zodSchemas.ts",
|
|
28
|
-
"example": "
|
|
28
|
+
"example": "pnpm run build && node lib/examples/HermesClient.js",
|
|
29
29
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
30
30
|
"lint": "eslint src/",
|
|
31
|
-
"prepublishOnly": "
|
|
32
|
-
"preversion": "
|
|
33
|
-
"version": "
|
|
31
|
+
"prepublishOnly": "pnpm run build && pnpm test && pnpm run lint",
|
|
32
|
+
"preversion": "pnpm run lint",
|
|
33
|
+
"version": "pnpm run format && git add -A src"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"pyth",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/eventsource": "^1.1.15",
|
|
42
42
|
"@types/jest": "^29.4.0",
|
|
43
|
+
"@types/node": "^20.14.2",
|
|
43
44
|
"@types/yargs": "^17.0.10",
|
|
44
45
|
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
45
46
|
"@typescript-eslint/parser": "^5.21.0",
|
|
@@ -52,8 +53,9 @@
|
|
|
52
53
|
"yargs": "^17.4.1"
|
|
53
54
|
},
|
|
54
55
|
"dependencies": {
|
|
56
|
+
"@zodios/core": "^10.9.6",
|
|
55
57
|
"eventsource": "^2.0.2",
|
|
56
58
|
"zod": "^3.23.8"
|
|
57
59
|
},
|
|
58
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "adf0b3ba67b4742ddb4d3ff01059cb891c7fea89"
|
|
59
61
|
}
|