-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bulk-streams-cli",
"version": "1.0.0",
"description": "CLI tool that can load a file and create big number of streams (3000+)",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"dev": "ts-node --files src/index.ts",
"prettier": "prettier --config .prettierrc --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "luka <luka@streamflow.finance>",
"license": "UNLICENSED",
"dependencies": {
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.4.0",
"@solana/spl-token-registry": "0.2.7",
"@solana/web3.js": "^1.90.0",
"@streamflow/common": "^6.0.3",
"@streamflow/stream": "^6.2.1",
"ansi-colors": "^4.1.3",
"bignumber.js": "^9.1.2",
"bs58": "^5.0.0",
"chalk": "^4.0.0",
"commander": "^12.0.0",
"csv-parse": "^5.5.3",
"csv-stringify": "^6.4.5",
"enquirer": "^2.4.1",
"figlet": "^1.7.0",
"map-stream": "^0.0.7",
"node-fetch": "^3.3.2",
"progress": "^2.0.3",
"p-queue": "^6.6.2",
"stream-throttle": "^0.1.3",
"throttled-queue": "^2.1.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bn.js": "^5.1.5",
"@types/figlet": "^1.5.8",
"@types/mute-stream": "^0.0.4",
"@types/node": "^20.11.19",
"@types/node-fetch": "^2.6.11",
"@types/progress": "^2.0.7",
"@types/stream-throttle": "^0.1.4",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}