react-file-upload-ui 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +42 -4
- package/dist/index.d.ts +42 -4
- package/dist/index.js +833 -10
- package/dist/index.mjs +833 -6
- package/package.json +53 -53
package/package.json
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "react-file-upload-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"main": "dist/index.js",
|
|
5
|
-
"types": "dist/index.d.ts",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "tsup src/index.tsx --format cjs,esm --dts --clean",
|
|
8
|
-
"prepare": "pnpm run build",
|
|
9
|
-
"prepublishOnly": "pnpm run build",
|
|
10
|
-
"publish:beta": "npm publish --tag beta --access public",
|
|
11
|
-
"publish:latest": "npm publish --access public"
|
|
12
|
-
},
|
|
13
|
-
"peerDependencies": {
|
|
14
|
-
"react": "^19.0.0",
|
|
15
|
-
"react-dom": "^19.0.0"
|
|
16
|
-
},
|
|
17
|
-
"license": "MIT",
|
|
18
|
-
"keywords": [
|
|
19
|
-
"react",
|
|
20
|
-
"file",
|
|
21
|
-
"upload",
|
|
22
|
-
"uploader",
|
|
23
|
-
"ui"
|
|
24
|
-
],
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "https://github.com/sakilanwar12/react-file-upload-ui.git"
|
|
28
|
-
},
|
|
29
|
-
"author": "sakilanwar12",
|
|
30
|
-
"sideEffects": false,
|
|
31
|
-
"publishConfig": {
|
|
32
|
-
"access": "public"
|
|
33
|
-
},
|
|
34
|
-
"private": false,
|
|
35
|
-
"files": [
|
|
36
|
-
"dist"
|
|
37
|
-
],
|
|
38
|
-
"module": "dist/index.mjs",
|
|
39
|
-
"exports": {
|
|
40
|
-
".": {
|
|
41
|
-
"import": "./dist/index.mjs",
|
|
42
|
-
"require": "./dist/index.js"
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@types/react": "^19.2.7",
|
|
47
|
-
"@types/react-dom": "^19.2.3",
|
|
48
|
-
"react": "^19.2.0",
|
|
49
|
-
"react-dom": "^19.2.0",
|
|
50
|
-
"tsup": "^8.5.1",
|
|
51
|
-
"typescript": "^5.9.3"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "react-file-upload-ui",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"types": "dist/index.d.ts",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsup src/index.tsx --format cjs,esm --dts --clean",
|
|
8
|
+
"prepare": "pnpm run build",
|
|
9
|
+
"prepublishOnly": "pnpm run build",
|
|
10
|
+
"publish:beta": "npm publish --tag beta --access public",
|
|
11
|
+
"publish:latest": "npm publish --access public"
|
|
12
|
+
},
|
|
13
|
+
"peerDependencies": {
|
|
14
|
+
"react": "^19.0.0",
|
|
15
|
+
"react-dom": "^19.0.0"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"react",
|
|
20
|
+
"file",
|
|
21
|
+
"upload",
|
|
22
|
+
"uploader",
|
|
23
|
+
"ui"
|
|
24
|
+
],
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/sakilanwar12/react-file-upload-ui.git"
|
|
28
|
+
},
|
|
29
|
+
"author": "sakilanwar12",
|
|
30
|
+
"sideEffects": false,
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"private": false,
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"module": "dist/index.mjs",
|
|
39
|
+
"exports": {
|
|
40
|
+
".": {
|
|
41
|
+
"import": "./dist/index.mjs",
|
|
42
|
+
"require": "./dist/index.js"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/react": "^19.2.7",
|
|
47
|
+
"@types/react-dom": "^19.2.3",
|
|
48
|
+
"react": "^19.2.0",
|
|
49
|
+
"react-dom": "^19.2.0",
|
|
50
|
+
"tsup": "^8.5.1",
|
|
51
|
+
"typescript": "^5.9.3"
|
|
52
|
+
}
|
|
53
|
+
}
|