@berachain/berajs 0.2.1 → 0.2.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.
Files changed (1) hide show
  1. package/package.json +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@berachain/berajs",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "sideEffects": false,
5
5
  "files": [
6
6
  "dist",
@@ -20,8 +20,7 @@
20
20
  "gray-matter": "4.0.3",
21
21
  "lodash": "4.17.23",
22
22
  "swr": "2.3.3",
23
- "@berachain/config": "0.1.0",
24
- "@berachain/utils": "0.1.0"
23
+ "@berachain/config": "0.1.0"
25
24
  },
26
25
  "devDependencies": {
27
26
  "@types/node-fetch": "2.6.12",
@@ -32,7 +31,8 @@
32
31
  "typescript": "5.5.4",
33
32
  "viem": "2.45.0",
34
33
  "vitest": "3.2.4",
35
- "@berachain/wagmi": "0.3.0"
34
+ "@berachain/wagmi": "0.3.0",
35
+ "@berachain/utils": "0.1.0"
36
36
  },
37
37
  "exports": {
38
38
  "./*": {
@@ -56,13 +56,13 @@
56
56
  "@berachain/wagmi": "0.3.0"
57
57
  },
58
58
  "scripts": {
59
- "build": "NODE_OPTIONS='--max-old-space-size=8192' tsup",
59
+ "build": "tsup",
60
60
  "prebuild": "pnpm contracts:update",
61
61
  "test": "vitest",
62
62
  "clean": "git clean -xdf dist .turbo node_modules",
63
- "check-types": "NODE_OPTIONS='--max-old-space-size=8192' tsup --dtsOnly",
63
+ "check-types": "tsup --dtsOnly",
64
64
  "precheck-types": "pnpm prebuild",
65
- "dev": "NODE_OPTIONS='--max-old-space-size=8192' tsup --watch",
65
+ "dev": "tsup --watch",
66
66
  "lint": "biome lint",
67
67
  "lint:fix": "pnpm lint --fix",
68
68
  "errors:update": "node .scripts/updateUnkownSignatures.js && biome format src/abi/utils --write",