-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 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
{
"name": "@shadow-drive/cli",
"version": "1.0.0",
"main": "shdw-drive.js",
"bin": {
"shdw-drive": "./dist/src/shdw-drive.js"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@coral-xyz/anchor": "^0.27.0",
"@shadow-drive/sdk": "^6.0.0",
"@solana/spl-token": "^0.2.0",
"@solana/web3.js": "^1.41.0",
"bigint-conversion": "^2.2.1",
"bottleneck": "^2.19.5",
"bs58": "^5.0.0",
"cli-progress": "^3.11.2",
"commander": "^11.0.0",
"cross-fetch": "^4.0.0",
"form-data": "^4.0.0",
"loglevel": "^1.8.0",
"mime-types": "^2.1.35",
"ora": "5",
"prompts": "^2.4.2",
"rxjs": "^7.5.5",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/mime-types": "^2.1.1",
"@types/prompts": "^2.0.14",
"@types/typescript": "^2.0.0",
"pkg": "^5.6.0",
"rimraf": "^5.0.1"
}
}