-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "onedrive-explorer",
"version": "1.0.0",
"description": "🚀 Modern OneDrive Business CLI explorer with smart search, file management, and automatic token handling via rclone",
"main": "onedrive-explorer.js",
"bin": {
"onedrive-explorer": "./onedrive-explorer.js",
"ode": "./onedrive-explorer.js"
},
"scripts": {
"start": "node onedrive-explorer.js",
"setup": "node rclone-dump.js",
"interactive": "node onedrive-explorer.js interactive",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"onedrive",
"microsoft-graph",
"rclone",
"cli",
"file-explorer",
"file-manager",
"download",
"search",
"interactive",
"token-management"
],
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"bytes": "^3.1.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.5.0",
"inquirer": "^8.2.7",
"moment": "^2.29.4",
"node-fetch": "^2.7.0",
"open": "^8.4.0",
"ora": "^5.4.1",
"table": "^6.8.1"
},
"engines": {
"node": ">=14.0.0"
}
}