@meteora-ag/cp-amm-sdk 1.1.0 → 1.1.2

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,42 +1,43 @@
1
1
  {
2
- "name": "@meteora-ag/cp-amm-sdk",
3
- "version": "1.1.0",
4
- "description": "SDK for Cp Amm",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "source": "./src/index.ts",
8
- "types": "./dist/index.d.ts",
9
- "author": "Minh Do <minh@raccoons.dev>",
10
- "files": [
11
- "dist/**"
12
- ],
13
- "devDependencies": {
14
- "@types/invariant": "^2.2.35",
15
- "tsx": "^4.20.3",
16
- "typescript": "^5.8.2"
17
- },
18
- "dependencies": {
19
- "@coral-xyz/anchor": "^0.31.0",
20
- "@solana/spl-token": "^0.4.8",
21
- "@solana/web3.js": "^1.95.3",
22
- "@types/bn.js": "^5.1.0",
23
- "@types/chai": "^4.3.0",
24
- "@types/mocha": "^9.0.0",
25
- "chai": "^4.3.4",
26
- "chain": "^0.4.0",
27
- "decimal.js": "^10.4.2",
28
- "invariant": "^2.2.4",
29
- "mocha": "^9.0.3",
30
- "solana-bankrun": "^0.4.0",
31
- "ts-mocha": "^10.0.0",
32
- "ts-node": "^10.9.2",
33
- "tsup": "^8.4.0"
34
- },
35
- "scripts": {
36
- "lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
37
- "lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
38
- "build": "tsup",
39
- "start": "npm run build -- --watch",
40
- "test": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/*.test.ts"
41
- }
2
+ "name": "@meteora-ag/cp-amm-sdk",
3
+ "version": "1.1.2",
4
+ "description": "SDK for Cp Amm",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "source": "./src/index.ts",
8
+ "types": "./dist/index.d.ts",
9
+ "author": "Minh Do <minh@raccoons.dev>",
10
+ "files": [
11
+ "dist/**"
12
+ ],
13
+ "scripts": {
14
+ "lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
15
+ "lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
16
+ "build": "tsup",
17
+ "clean": "rm -rf dist && rm -rf node_modules",
18
+ "start": "npm run build -- --watch",
19
+ "test": "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/*.test.ts"
20
+ },
21
+ "devDependencies": {
22
+ "@types/invariant": "^2.2.35",
23
+ "tsx": "^4.20.3",
24
+ "typescript": "^5.8.2"
25
+ },
26
+ "dependencies": {
27
+ "@coral-xyz/anchor": "^0.31.0",
28
+ "@solana/spl-token": "^0.4.8",
29
+ "@solana/web3.js": "^1.95.3",
30
+ "@types/bn.js": "^5.1.0",
31
+ "@types/chai": "^4.3.0",
32
+ "@types/mocha": "^9.0.0",
33
+ "chai": "^4.3.4",
34
+ "chain": "^0.4.0",
35
+ "decimal.js": "^10.4.2",
36
+ "invariant": "^2.2.4",
37
+ "mocha": "^9.0.3",
38
+ "solana-bankrun": "^0.4.0",
39
+ "ts-mocha": "^10.0.0",
40
+ "ts-node": "^10.9.2",
41
+ "tsup": "^8.4.0"
42
+ }
42
43
  }