-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.34 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.34 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "quick-share-cli",
"version": "1.0.0",
"description": "⚡ Lightning-fast file sharing via Cloudflare R2 - Upload any file and get instant shareable links",
"main": "bin/quick-share.js",
"bin": {
"quick-share": "bin/quick-share.js",
"qshare": "bin/quick-share.js",
"share": "bin/quick-share.js"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"postinstall": "node scripts/postinstall.js",
"preuninstall": "node scripts/preuninstall.js"
},
"keywords": [
"cli",
"cloudflare",
"r2",
"file-sharing",
"upload",
"cdn",
"s3",
"image-hosting",
"file-hosting",
"productivity"
],
"author": "Jack <jack@aspectstudio.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jack/quick-share-cli.git"
},
"bugs": {
"url": "https://github.com/jack/quick-share-cli/issues"
},
"homepage": "https://github.com/jack/quick-share-cli#readme",
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"ora": "^5.4.1"
},
"devDependencies": {
"eslint": "^8.28.0",
"jest": "^29.3.1"
},
"files": [
"bin/",
"scripts/",
"lib/",
"assets/",
"README.md",
"LICENSE"
]
}