@n1xyz/nord-ts 0.0.20 → 0.0.22

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n1xyz/nord-ts",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "description": "Typescript for Nord",
5
5
  "keywords": [],
6
6
  "author": "",
@@ -14,46 +14,49 @@
14
14
  "README.md"
15
15
  ],
16
16
  "scripts": {
17
- "gen:proto": "nix run ..#nord-ts-proto ../engine/nord.proto src/gen/",
18
- "gen:api": "nix run ..#nord-openapi | bunx openapi-typescript > src/gen/openapi.ts",
17
+ "gen:proto": "bunx @bufbuild/buf generate ../engine",
18
+ "gen:api": "nix run ..#openapi | bunx openapi-typescript > src/gen/openapi.ts",
19
19
  "gen": "bun run gen:proto && bun run gen:api",
20
20
  "build": "bun run gen && bunx tsc && bun run docs",
21
21
  "docs": "bunx typedoc --out ./docs ./src",
22
22
  "compile": "tsc",
23
23
  "clean": "rm -rf ./src/gen ./dist ./docs",
24
24
  "fmt": "prettier --write src tests",
25
- "ci": "bunx eslint && prettier --check src tests"
25
+ "ci": "bunx eslint && prettier --check src tests",
26
+ "all": "bun install && bun run build && bun run ci && bun fmt"
26
27
  },
27
28
  "devDependencies": {
29
+ "@bufbuild/protoc-gen-es": "^2.6.3",
30
+ "@bufbuild/protoplugin": "^2.6.3",
28
31
  "@types/bun": "latest",
29
- "@types/google-protobuf": "^3.15.10",
30
- "@types/node": "^22.15.29",
31
- "@types/node-fetch": "^2.6.9",
32
- "@types/ws": "^8.5.10",
33
- "@typescript-eslint/eslint-plugin": "^8.26.1",
34
- "@typescript-eslint/parser": "^8.26.1",
35
- "eslint": "^9.22.0",
36
- "globals": "^16.0.0",
37
- "openapi-typescript": "^7.8.0",
38
- "prettier": "^3.5.3",
32
+ "@types/google-protobuf": "^3.15.12",
33
+ "@types/node": "^22.17.1",
34
+ "@types/node-fetch": "^2.6.13",
35
+ "@types/ws": "^8.18.1",
36
+ "@typescript-eslint/eslint-plugin": "^8.39.1",
37
+ "@typescript-eslint/parser": "^8.39.1",
38
+ "eslint": "^9.33.0",
39
+ "globals": "^16.3.0",
40
+ "openapi-typescript": "^7.9.1",
41
+ "prettier": "^3.6.2",
39
42
  "ts-node": "^10.9.2",
40
43
  "typedoc": "^0.27.9",
41
- "typescript": "*"
44
+ "typescript": "^5.9.2"
42
45
  },
43
46
  "dependencies": {
44
- "@bufbuild/protobuf": "^2.0.0",
45
- "@n1xyz/proton": "0.0.0",
46
- "@noble/curves": "^1.3.0",
47
- "@noble/ed25519": "^2.2.3",
48
- "@noble/hashes": "^1.3.2",
47
+ "@bufbuild/protobuf": "^2.6.3",
48
+ "@n1xyz/proton": "0.0.2",
49
+ "@noble/curves": "^1.9.6",
50
+ "@noble/ed25519": "^2.3.0",
51
+ "@noble/hashes": "^1.8.0",
49
52
  "@solana/spl-token": "^0.4.13",
50
- "@solana/web3.js": "^1.98.2",
53
+ "@solana/web3.js": "^1.98.4",
51
54
  "bs58": "^6.0.0",
52
- "decimal.js": "^10.4.3",
53
- "ethers": "^6.11.1",
55
+ "decimal.js": "^10.6.0",
56
+ "ethers": "^6.15.0",
54
57
  "node-fetch": "2.6.13",
55
58
  "openapi-fetch": "^0.14.0",
56
59
  "tweetnacl": "^1.0.3",
57
- "ws": "^8.16.0"
60
+ "ws": "^8.18.3"
58
61
  }
59
62
  }