-
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) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "up-clouds",
"version": "2.1.5",
"description": "A lightweight and extensible wrapper for uploading files to multiple file hosting services such as Catbox, Litterbox, and others. Designed for developers who need a unified, consistent, and easy-to-use interface for automated or programmatic file uploads.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"test": "jest",
"example": "ts-node example/example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VryptLab/up-clouds.git"
},
"keywords": [
"upload",
"file",
"catbox",
"litterbox",
"wrapper",
"typescript"
],
"author": "Vrypt",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/VryptLab/up-clouds/issues"
},
"homepage": "https://github.com/VryptLab/up-clouds#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"jest": "^30.1.3",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"axios": "^1.12.2",
"uuid": "^13.0.0"
},
"packageManager": "yarn@4.9.2"
}