-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 KB
/
package.json
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
48
49
{
"name": "@lightprotocol/jup-api-adapter",
"version": "0.1.6",
"description": "Jupiter API wrapper with support for compressed tokens",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Light Protocol Maintainers",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest --run --reporter=verbose",
"clean": "rm -rf dist",
"prepublishOnly": "yarn clean && yarn build"
},
"keywords": [
"solana",
"jupiter",
"zk",
"compression"
],
"license": "MIT",
"type": "module",
"dependencies": {
"@jup-ag/api": "6.0.30",
"@lightprotocol/compressed-token": "^0.16.0",
"@lightprotocol/stateless.js": "^0.16.0",
"@solana/spl-token": "0.4.8",
"@solana/web3.js": "1.95.3",
"bs58": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.9.2",
"@types/promise-retry": "^1.1.6",
"@types/superstruct": "^0.8.2",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^2.1.8",
"yarn": "^1.22.22"
},
"publishConfig": {
"access": "public"
}
}