-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "jup-swap",
"version": "0.1.0",
"main": "swap-with-transaction.js",
"author": "light protocol maintainers",
"license": "MIT",
"type": "module",
"dependencies": {
"@lightprotocol/compressed-token": "~0.16.0",
"@lightprotocol/jup-api-adapter": "~0.1.5",
"@lightprotocol/stateless.js": "~0.16.0",
"@solana/spl-token": "0.4.8",
"@solana/web3.js": "1.95.3",
"@types/node": "^22.9.2",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"promise-retry": "^2.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/promise-retry": "^1.1.6",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"prettier": "^3.3.3",
"tsx": "^4.7.1",
"yarn": "^1.22.22"
},
"scripts": {
"quote": "tsx src/swap-with-transaction.ts quote true",
"quote-ixs": "tsx src/swap-with-instructions.ts quote true",
"swap": "tsx src/swap-with-transaction.ts swap true",
"swap-ixs": "tsx src/swap-with-instructions.ts swap true",
"build": "tsc",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md}\""
}
}