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/dist/index.d.ts +290 -32
- package/dist/index.js +293 -254
- package/dist/index.js.map +1 -1
- package/package.json +68 -69
package/package.json
CHANGED
|
@@ -1,71 +1,70 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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
|
}
|