aftermath-ts-sdk 2.0.0 → 2.1.0

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": "aftermath-ts-sdk",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Aftermath TypeScript SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -14,15 +14,18 @@
14
14
  "scripts": {
15
15
  "clean": "rimraf ./dist",
16
16
  "build": "tsup",
17
- "build:tsc": "npm run clean && tsc",
18
- "link": "npm link && cd ../aftermath-frontend/ && npm link aftermath-ts-sdk",
19
- "prepack": "npm run build",
20
- "prepare": "npm run build",
17
+ "build:tsc": "bun run clean && tsc",
18
+ "link": "bun link && cd ../aftermath-frontend/ && bun link aftermath-ts-sdk",
19
+ "prepack": "bun run build",
20
+ "prepare": "bun run build",
21
21
  "test": "jest",
22
+ "check": "ultracite check",
23
+ "fix": "ultracite fix",
22
24
  "changeset": "changeset",
23
25
  "version-packages": "changeset version",
24
- "release": "npm run build && changeset publish"
26
+ "release": "bun run build && changeset publish"
25
27
  },
28
+ "packageManager": "bun@1.3.8",
26
29
  "repository": {
27
30
  "type": "git",
28
31
  "url": "git+ssh://git@github.com/AftermathFinance/aftermath-ts-sdk.git"
@@ -46,26 +49,22 @@
46
49
  },
47
50
  "homepage": "https://github.com/AftermathFinance/aftermath-ts-sdk#readme",
48
51
  "dependencies": {
49
- "dayjs": "^1.11.7"
52
+ "date-fns": "^4.1.0"
50
53
  },
51
54
  "devDependencies": {
55
+ "@biomejs/biome": "2.3.13",
52
56
  "@changesets/cli": "^2.29.8",
53
57
  "@types/jest": "^29.5.2",
54
- "eslint-plugin-tsdoc": "^0.2.17",
55
58
  "jest": "^29.5.0",
56
- "prettier": "^2.8.8",
57
59
  "rimraf": "^6.0.1",
58
60
  "ts-jest": "^29.1.0",
59
61
  "ts-node": "^10.9.1",
60
62
  "tsup": "^8.5.1",
61
63
  "typescript": "^5.8.3",
64
+ "ultracite": "7.1.5",
62
65
  "yaml": "^2.3.1"
63
66
  },
64
67
  "peerDependencies": {
65
68
  "@mysten/sui": ">=2.0.0 <3.0.0"
66
- },
67
- "prettier": {
68
- "tabWidth": 4,
69
- "useTabs": true
70
69
  }
71
70
  }