-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"type": "commonjs",
"name": "@zanixongroup/uploader",
"version": "2.1.5",
"description": "A simple any file hosting uploader for node.js",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.cjs"
},
"scripts": {
"test": "tsx ./test/test.ts",
"clean": "rm -rf dist && echo '\n\nDist directory has been cleaned.\n\n'",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZanixonGroup/uploader.git"
},
"keywords": [
"uploader",
"file-upload",
"file-hosting",
"file",
"cloud",
"cloud-file"
],
"author": "ZTRdiamond",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZanixonGroup/uploader/issues"
},
"homepage": "https://github.com/ZanixonGroup/uploader#readme",
"dependencies": {
"axios": "^1.7.2",
"file-type": "^19.0.0",
"form-data": "^4.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"@types/node": "22.13.8",
"desm": "1.3.1",
"fs": "0.0.1-security",
"tsup": "8.4.0",
"typescript": "5.8.2"
}
}