near-kit 0.4.4 → 0.4.5

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.
Files changed (1) hide show
  1. package/package.json +12 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "near-kit",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "A simple, intuitive TypeScript library for interacting with NEAR Protocol",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -34,7 +34,11 @@
34
34
  "scripts": {
35
35
  "build": "tsc",
36
36
  "dev": "tsc --watch",
37
- "test": "bun test",
37
+ "test": "vitest run",
38
+ "test:ui": "vitest --ui",
39
+ "test:unit": "vitest run tests/unit",
40
+ "test:integration": "vitest run tests/integration",
41
+ "test:wallets": "vitest run tests/wallets",
38
42
  "lint": "biome check . --write",
39
43
  "typecheck": "tsc --noEmit --project tsconfig.typecheck.json",
40
44
  "prepublishOnly": "bun run build",
@@ -63,7 +67,7 @@
63
67
  }
64
68
  },
65
69
  "devDependencies": {
66
- "@biomejs/biome": "2.3.5",
70
+ "@biomejs/biome": "2.3.7",
67
71
  "@changesets/cli": "^2.29.7",
68
72
  "@hot-labs/near-connect": "^0.6.9",
69
73
  "@near-js/transactions": "^2.5.1",
@@ -71,8 +75,11 @@
71
75
  "@near-wallet-selector/core": "^10.1.1",
72
76
  "@types/bun": "^1.3.2",
73
77
  "@types/tar": "^6.1.13",
78
+ "@vitest/coverage-v8": "^4.0.10",
79
+ "@vitest/ui": "^4.0.10",
74
80
  "lefthook": "^2.0.4",
75
- "typescript": "^5.9.3"
81
+ "typescript": "^5.9.3",
82
+ "vitest": "^4.0.10"
76
83
  },
77
84
  "dependencies": {
78
85
  "@napi-rs/keyring": "^1.2.0",
@@ -81,7 +88,7 @@
81
88
  "@scure/base": "^2.0.0",
82
89
  "@scure/bip32": "^2.0.1",
83
90
  "@scure/bip39": "^2.0.1",
84
- "@zorsh/zorsh": "^0.3.3",
91
+ "@zorsh/zorsh": "^0.4.0",
85
92
  "tar": "^7.5.2",
86
93
  "zod": "^4.1.12"
87
94
  }