-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 987 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 987 Bytes
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
{
"name": "@shdwdrive/cli",
"version": "1.0.5",
"description": "CLI tool for shdwDrive file operations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"shdw-drive": "./bin/shdw-drive.js"
},
"files": [
"dist",
"bin"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"shadow-drive",
"shdwdrive",
"solana",
"storage",
"cli"
],
"author": "GenesysGo",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@project-serum/anchor": "^0.26.0",
"@shdwdrive/sdk": "^1.0.4",
"@solana/web3.js": "^1.87.6",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"crypto-js": "^4.2.0",
"form-data": "^4.0.0",
"mime-types": "^2.1.35",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/node": "^20.10.5",
"typescript": "^5.3.3"
}
}