-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "@lndgalante/solutils",
"version": "0.6.0",
"license": "MIT",
"author": {
"name": "Leonardo Galante",
"email": "[email protected]"
},
"main": "./dist/index.js",
"files": [
"dist/"
],
"repository": "git://github.com/lndgalante/solutils.git",
"dependencies": {
"@project-serum/anchor": "^0.26.0",
"@project-serum/borsh": "^0.2.5",
"encoding": "^0.1.13",
"pako": "^2.1.0",
"react": "^18.2.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@solana/spl-token": "^0.3.6",
"@solana/wallet-adapter-react": "0.15.28",
"@solana/wallet-adapter-react-ui": "^0.9.27",
"@solana/wallet-adapter-wallets": "^0.19.10",
"@solana/web3.js": "^1.73.0",
"@types/pako": "^2.0.0",
"@types/react": "^18.0.26",
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@solana/spl-token": "^0.3.6",
"@solana/wallet-adapter-react": "0.15.28",
"@solana/wallet-adapter-react-ui": "^0.9.27",
"@solana/wallet-adapter-wallets": "^0.19.10",
"@solana/web3.js": "^1.73.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"build:docs": "cd docs/web && yarn build"
}
}