-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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": "streamflow-staking-cli",
"version": "1.0.0",
"description": "CLI tool for managing Streamflow staking pools, rewards pools and governors",
"main": "dist/index.js",
"scripts": {
"build": "tsc --skipLibCheck",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@commander-js/extra-typings": "^13.1.0",
"@coral-xyz/anchor": "^0.31.1",
"@coral-xyz/spl-token": "^0.31.1",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.0.0",
"prettier": "^2.6.2",
"tsx": "^4.19.3",
"typescript": "^5.0.0"
},
"bin": {
"streamflow-staking": "./dist/index.js"
},
"keywords": [
"solana",
"staking",
"streamflow",
"cli"
],
"author": "Streamflow",
"license": "MIT",
"packageManager": "yarn@4.7.0+sha512.5a0afa1d4c1d844b3447ee3319633797bcd6385d9a44be07993ae52ff4facabccafb4af5dcd1c2f9a94ac113e5e9ff56f6130431905884414229e284e37bb7c9"
}