-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@honey-finance/sdk",
"version": "1.2.5",
"description": "This repository holds the wrappers, contexts and other utilities to interact with the Honey program library.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"typedoc": "npx typedoc --skipErrorChecking"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": false,
"dependencies": {
"@metaplex-foundation/js": "^0.18.0",
"@metaplex-foundation/mpl-token-auth-rules": "^1.0.0",
"@metaplex-foundation/mpl-token-metadata": "^2.7.0",
"@msgpack/msgpack": "^3.0.0-beta2",
"@project-serum/anchor": "^0.26.0",
"@project-serum/serum": "^0.13.61",
"@pythnetwork/client": "^2.5.3",
"@rollup/plugin-commonjs": "^21.1.0",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.75.0",
"@switchboard-xyz/switchboard-v2": "^0.0.127",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/bs58": "^4.0.1",
"@types/expect": "^24.3.0",
"@types/react": "^17.0.39",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-sass": "^1.2.12",
"rollup-plugin-typescript2": "^0.31.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.23.14",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"dist"
]
}