-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 KB
/
package.json
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
{
"name": "@pantoninho/use-uploader",
"version": "0.7.0",
"description": "a react hook for uploading files with support for concurrent multipart uploads and progress tracking.",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"homepage": "https://github.com/pantoninho/use-uploader",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"lint": "eslint lib/ tests/ index.js"
},
"keywords": [],
"author": "pantoninho",
"license": "MIT",
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"jsdom": "^25.0.0",
"msw": "^2.6.6",
"prettier": "^3.3.3",
"vitest": "^2.1.1"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pantoninho/use-uploader.git"
},
"bugs": {
"url": "https://github.com/pantoninho/use-uploader/issues"
},
"dependencies": {
"axios": "^1.7.8"
}
}