forked from upfilesh/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.12 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
{
"name": "@lambdacurry/upfile",
"version": "1.0.0",
"description": "Upload files to Lambda Curry's slopfiles service",
"bin": {
"upfile": "bin/upfile"
},
"main": "dist/index.js",
"files": [
"bin/",
"dist/",
"README.md"
],
"scripts": {
"build": "node scripts/write-version.js && tsc",
"dev": "ts-node src/index.ts",
"test": "npm run build && node --test test/*.test.cjs",
"prepublishOnly": "npm test"
},
"keywords": [
"upload",
"file-sharing",
"cli",
"cdn",
"ai-agents",
"terminal",
"command-line"
],
"author": "Lambda Curry",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lambda-curry/upfile.git"
},
"bugs": {
"url": "https://github.com/lambda-curry/upfile/issues"
},
"homepage": "https://github.com/lambda-curry/upfile",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"ts-node": "^10.9.0"
}
}