-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 955 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
{
"name": "dripfiles",
"version": "0.1.3",
"description": "Upload and download DripFiles transfers directly from your terminal.",
"type": "module",
"bin": {
"dripfiles": "bin/dripfiles.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"check": "node --check bin/dripfiles.js && node --check src/client.js && node --check src/config.js && node --check src/cli.js",
"test": "node --test",
"prepublishOnly": "npm run check && npm test"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"dripfiles",
"cli",
"file-sharing",
"upload",
"download",
"transfer"
],
"homepage": "https://dripfiles.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Oihalitz/dripfiles-cli.git"
},
"bugs": {
"url": "https://github.com/Oihalitz/dripfiles-cli/issues"
},
"license": "MIT"
}