aftermath-ts-sdk 2.0.0-temp.2 → 2.0.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 CHANGED
@@ -1,71 +1,70 @@
1
1
  {
2
- "name": "aftermath-ts-sdk",
3
- "version": "2.0.0-temp.2",
4
- "description": "Aftermath TypeScript SDK",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "default": "./dist/index.js"
12
- }
13
- },
14
- "scripts": {
15
- "clean": "rimraf ./dist",
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",
21
- "test": "jest",
22
- "changeset": "changeset",
23
- "version-packages": "changeset version",
24
- "release": "npm run build && changeset publish"
25
- },
26
- "repository": {
27
- "type": "git",
28
- "url": "git+ssh://git@github.com/AftermathFinance/aftermath-ts-sdk.git"
29
- },
30
- "keywords": [
31
- "aftermath",
32
- "aftermath finance",
33
- "sui",
34
- "aftermath sdk",
35
- "aftermath finance sdk",
36
- "aftermath typescript sdk",
37
- "aftermath finance typescript sdk"
38
- ],
39
- "author": "Aftermath",
40
- "license": "Apache-2.0",
41
- "files": [
42
- "dist/*"
43
- ],
44
- "bugs": {
45
- "url": "https://github.com/AftermathFinance/aftermath-ts-sdk/issues"
46
- },
47
- "homepage": "https://github.com/AftermathFinance/aftermath-ts-sdk#readme",
48
- "dependencies": {
49
- "dayjs": "^1.11.7"
50
- },
51
- "devDependencies": {
52
- "@changesets/cli": "^2.29.8",
53
- "@types/jest": "^29.5.2",
54
- "eslint-plugin-tsdoc": "^0.2.17",
55
- "jest": "^29.5.0",
56
- "prettier": "^2.8.8",
57
- "rimraf": "^6.0.1",
58
- "ts-jest": "^29.1.0",
59
- "ts-node": "^10.9.1",
60
- "tsup": "^8.5.1",
61
- "typescript": "^5.8.3",
62
- "yaml": "^2.3.1"
63
- },
64
- "peerDependencies": {
65
- "@mysten/sui": ">=2.0.0 <3.0.0"
66
- },
67
- "prettier": {
68
- "tabWidth": 4,
69
- "useTabs": true
70
- }
2
+ "name": "aftermath-ts-sdk",
3
+ "version": "2.0.1",
4
+ "description": "Aftermath TypeScript SDK",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "default": "./dist/index.js"
12
+ }
13
+ },
14
+ "scripts": {
15
+ "clean": "rimraf ./dist",
16
+ "build": "tsup",
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
+ "test": "jest",
22
+ "check": "ultracite check",
23
+ "fix": "ultracite fix",
24
+ "changeset": "changeset",
25
+ "version-packages": "changeset version",
26
+ "release": "bun run build && changeset publish"
27
+ },
28
+ "packageManager": "bun@1.3.8",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+ssh://git@github.com/AftermathFinance/aftermath-ts-sdk.git"
32
+ },
33
+ "keywords": [
34
+ "aftermath",
35
+ "aftermath finance",
36
+ "sui",
37
+ "aftermath sdk",
38
+ "aftermath finance sdk",
39
+ "aftermath typescript sdk",
40
+ "aftermath finance typescript sdk"
41
+ ],
42
+ "author": "Aftermath",
43
+ "license": "Apache-2.0",
44
+ "files": [
45
+ "dist/*"
46
+ ],
47
+ "bugs": {
48
+ "url": "https://github.com/AftermathFinance/aftermath-ts-sdk/issues"
49
+ },
50
+ "homepage": "https://github.com/AftermathFinance/aftermath-ts-sdk#readme",
51
+ "dependencies": {
52
+ "date-fns": "^4.1.0"
53
+ },
54
+ "devDependencies": {
55
+ "@biomejs/biome": "2.3.13",
56
+ "@changesets/cli": "^2.29.8",
57
+ "@types/jest": "^29.5.2",
58
+ "jest": "^29.5.0",
59
+ "rimraf": "^6.0.1",
60
+ "ts-jest": "^29.1.0",
61
+ "ts-node": "^10.9.1",
62
+ "tsup": "^8.5.1",
63
+ "typescript": "^5.8.3",
64
+ "ultracite": "7.1.5",
65
+ "yaml": "^2.3.1"
66
+ },
67
+ "peerDependencies": {
68
+ "@mysten/sui": ">=2.0.0 <3.0.0"
69
+ }
71
70
  }