-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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
{
"name": "@meteora-ag/cp-amm-sdk",
"version": "1.3.6",
"packageManager": "pnpm@10.15.0",
"description": "SDK for DAMM v2",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"author": "Minh Do <minh@raccoons.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/MeteoraAg/damm-v2-sdk.git"
},
"files": [
"dist/**"
],
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"build": "tsup",
"clean": "rm -rf dist && rm -rf node_modules",
"start": "npm run build -- --watch",
"test": "vitest run",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@types/invariant": "^2.2.35",
"prettier": "^3.7.4",
"solana-bankrun": "^0.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.2",
"vitest": "^4.0.16"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.0",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.3",
"@types/bn.js": "^5.1.0",
"bn.js": "^5.2.2",
"chain": "^0.4.0",
"decimal.js": "^10.4.2",
"invariant": "^2.2.4"
}
}