@meteora-ag/dynamic-bonding-curve-sdk 1.4.8 → 1.4.10

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": "@meteora-ag/dynamic-bonding-curve-sdk",
3
- "version": "1.4.8",
3
+ "version": "1.4.10",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.js",
6
6
  "source": "src/index.ts",
@@ -19,10 +19,6 @@
19
19
  "description": "A Typescript SDK for interacting with the Dynamic Bonding Curve on Meteora.",
20
20
  "license": "MIT",
21
21
  "type": "module",
22
- "scripts": {
23
- "build": "rm -rf dist && tsup src/index.ts --format esm,cjs --dts",
24
- "clean": "rm -rf node_modules dist"
25
- },
26
22
  "exports": {
27
23
  ".": {
28
24
  "types": "./dist/index.d.ts",
@@ -31,13 +27,14 @@
31
27
  }
32
28
  },
33
29
  "devDependencies": {
34
- "@meteora-ag/ts-sdk-config": "*",
35
30
  "@types/bn.js": "^5.1.6",
36
- "@types/bun": "latest",
31
+ "@types/node": "^25.0.3",
37
32
  "eslint": "^9.24.0",
38
33
  "solana-bankrun": "^0.4.0",
39
34
  "tsup": "^8.4.0",
40
- "tsx": "^4.19.3"
35
+ "tsx": "^4.19.3",
36
+ "vitest": "^2.1.0",
37
+ "@meteora-ag/ts-sdk-config": "0.0.0"
41
38
  },
42
39
  "peerDependencies": {
43
40
  "typescript": "^5"
@@ -48,5 +45,13 @@
48
45
  "@solana/web3.js": "^1.98.0",
49
46
  "bn.js": "^5.2.1",
50
47
  "decimal.js": "^10.5.0"
48
+ },
49
+ "scripts": {
50
+ "build": "rm -rf dist && tsup --config ../../tsup.config.ts src/index.ts",
51
+ "clean": "rm -rf node_modules dist",
52
+ "test": "vitest run",
53
+ "test:watch": "vitest",
54
+ "check-types": "tsc --noEmit",
55
+ "lint": "eslint ."
51
56
  }
52
57
  }