-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-simple-upload",
"version": "0.1.5",
"type": "module",
"module": "./dist/react-simple-upload.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"description": "a react Uploader library implements html5 file upload and provides multiple simultaneous, stable, fault tolerant and resumable uploads",
"keywords": [
"simple-uploader.js",
"react upload",
"uploader",
"uploader.js",
"file upload",
"resumable upload",
"chunk upload",
"html5 upload",
"javascript upload",
"upload"
],
"repository": {
"type": "git",
"url": "https://github.com/sunburst89757/react-simple-upload.git"
},
"bugs": "https://github.com/sunburst89757/react-simple-upload/issues",
"homepage": "https://github.com/sunburst89757/react-simple-upload",
"exports": {
".": {
"import": "./dist/react-simple-upload.js"
}
},
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simple-uploader.js": "^0.6.0"
},
"devDependencies": {
"@ant-design/icons": "^5.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"antd": "^5.1.6",
"autoprefixer": "^10.4.13",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-libcss": "^1.0.5"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.2.0"
}
}