@minswap/noodles-sdk 0.0.4

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 (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +55 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ ## How to publish new version
2
+
3
+ - Run `pnpm changeset` to create new changeset, input changelog
4
+ - Run `pnpm changeset version` to pump new version, then commit the changes
5
+ - Run `pnpm changeset publish` to publish package
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@minswap/noodles-sdk",
3
+ "version": "0.0.4",
4
+ "type": "module",
5
+ "exports": {
6
+ ".": {
7
+ "types": "./dist/index.d.ts",
8
+ "import": "./dist/index.js",
9
+ "require": "./dist/index.cjs"
10
+ }
11
+ },
12
+ "main": "./dist/index.cjs",
13
+ "types": "./dist/index.d.ts",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git@github.com:minswap/noodles-aggregator.git"
20
+ },
21
+ "devDependencies": {
22
+ "@biomejs/biome": "2.2.4",
23
+ "@changesets/cli": "^2.29.7",
24
+ "@microsoft/api-extractor": "^7.52.13",
25
+ "@rslib/core": "^0.14.0",
26
+ "@types/bn.js": "^5.2.0",
27
+ "@types/node": "22",
28
+ "tsx": "^4.20.6",
29
+ "typescript": "^5.9.2"
30
+ },
31
+ "dependencies": {
32
+ "@7kprotocol/sdk-ts": "3.4.1",
33
+ "@alphafi/alphalend-sdk": "^1.1.20",
34
+ "@cetusprotocol/aggregator-sdk": "1.2.0",
35
+ "@cetusprotocol/cetus-sui-clmm-sdk": "^5.4.0",
36
+ "@flowx-finance/sdk": "1.13.4",
37
+ "@interest-protocol/memez-fun-sdk": "^16.6.0",
38
+ "@interest-protocol/sui-core-sdk": "^0.0.1",
39
+ "@minswap/tiny-invariant": "^1.2.0",
40
+ "@mysten/sui": "1.38.0",
41
+ "@naviprotocol/astros-aggregator-sdk": "^1.7.0",
42
+ "@scallop-io/sui-scallop-sdk": "^2.2.9",
43
+ "@suilend/sdk": "^1.1.81",
44
+ "aftermath-ts-sdk": "1.3.21",
45
+ "bignumber.js": "^9.3.1",
46
+ "bn.js": "^5.2.2",
47
+ "navi-sdk": "^1.6.22"
48
+ },
49
+ "scripts": {
50
+ "build": "rslib build",
51
+ "lint": "biome check --write",
52
+ "dev": "rslib build --watch",
53
+ "format": "biome format --write"
54
+ }
55
+ }