@pythnetwork/pyth-lazer-sdk 0.5.0 → 0.5.1
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 +20 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pythnetwork/pyth-lazer-sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Pyth Lazer SDK",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -20,31 +20,19 @@
|
|
|
20
20
|
"default": "./dist/cjs/index.js"
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build:cjs": "tsc --project tsconfig.build.json --verbatimModuleSyntax false --module commonjs --outDir ./dist/cjs && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
|
|
25
|
-
"build:esm": "tsc --project tsconfig.build.json --outDir ./dist/esm && echo '{\"type\":\"module\"}' > dist/esm/package.json",
|
|
26
|
-
"fix:lint": "eslint --fix . --max-warnings 0",
|
|
27
|
-
"test:lint": "eslint . --max-warnings 0",
|
|
28
|
-
"test:types": "tsc",
|
|
29
|
-
"test:format": "prettier --check .",
|
|
30
|
-
"fix:format": "prettier --write .",
|
|
31
|
-
"example": "node --loader ts-node/esm examples/index.js",
|
|
32
|
-
"doc": "typedoc --out docs/typedoc src",
|
|
33
|
-
"publish": "pnpm run script -- publish"
|
|
34
|
-
},
|
|
35
23
|
"devDependencies": {
|
|
36
|
-
"@cprussin/eslint-config": "
|
|
37
|
-
"@cprussin/tsconfig": "
|
|
24
|
+
"@cprussin/eslint-config": "^4.0.2",
|
|
25
|
+
"@cprussin/tsconfig": "^3.1.2",
|
|
38
26
|
"@types/node": "^18.19.54",
|
|
39
27
|
"@types/ws": "^8.5.12",
|
|
40
|
-
"eslint": "
|
|
41
|
-
"prettier": "
|
|
42
|
-
"ts-node": "
|
|
28
|
+
"eslint": "^9.23.0",
|
|
29
|
+
"prettier": "^3.5.3",
|
|
30
|
+
"ts-node": "^10.9.2",
|
|
43
31
|
"typedoc": "^0.26.8",
|
|
44
|
-
"typescript": "
|
|
32
|
+
"typescript": "^5.8.2"
|
|
45
33
|
},
|
|
46
34
|
"bugs": {
|
|
47
|
-
"url": "https://github.com/pyth-
|
|
35
|
+
"url": "https://github.com/pyth-network/pyth-crosschain/issues"
|
|
48
36
|
},
|
|
49
37
|
"type": "module",
|
|
50
38
|
"homepage": "https://github.com/pyth-network/pyth-crosschain/tree/main/lazer/sdk/js",
|
|
@@ -66,5 +54,15 @@
|
|
|
66
54
|
"ts-log": "^2.2.7",
|
|
67
55
|
"ws": "^8.18.0"
|
|
68
56
|
},
|
|
69
|
-
"
|
|
70
|
-
}
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build:cjs": "tsc --project tsconfig.build.json --verbatimModuleSyntax false --module commonjs --outDir ./dist/cjs && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
|
|
59
|
+
"build:esm": "tsc --project tsconfig.build.json --outDir ./dist/esm && echo '{\"type\":\"module\"}' > dist/esm/package.json",
|
|
60
|
+
"fix:lint": "eslint --fix . --max-warnings 0",
|
|
61
|
+
"test:lint": "eslint . --max-warnings 0",
|
|
62
|
+
"test:types": "tsc",
|
|
63
|
+
"test:format": "prettier --check .",
|
|
64
|
+
"fix:format": "prettier --write .",
|
|
65
|
+
"example": "node --loader ts-node/esm examples/index.js",
|
|
66
|
+
"doc": "typedoc --out docs/typedoc src"
|
|
67
|
+
}
|
|
68
|
+
}
|