uploaderkit 1.0.0

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/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "uploaderkit",
3
+ "version": "1.0.0",
4
+ "description": "One upload contract for every storage provider — scope registry, isomorphic validation, headless React and a server router.",
5
+ "keywords": [
6
+ "upload",
7
+ "file-upload",
8
+ "dropzone",
9
+ "storage",
10
+ "s3",
11
+ "gcs",
12
+ "r2",
13
+ "react",
14
+ "express",
15
+ "nextjs"
16
+ ],
17
+ "license": "MIT",
18
+ "author": "Ricardo Tapia <rhtc19@gmail.com>",
19
+ "engines": {
20
+ "node": ">=18"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/Ricwolf19/uploaderkit.git",
25
+ "directory": "packages/uploaderkit"
26
+ },
27
+ "homepage": "https://github.com/Ricwolf19/uploaderkit#readme",
28
+ "bugs": {
29
+ "url": "https://github.com/Ricwolf19/uploaderkit/issues"
30
+ },
31
+ "type": "module",
32
+ "sideEffects": false,
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "README.md",
39
+ "LICENSE",
40
+ "NOTICE"
41
+ ],
42
+ "main": "./dist/index.cjs",
43
+ "module": "./dist/index.js",
44
+ "types": "./dist/index.d.ts",
45
+ "exports": {
46
+ ".": {
47
+ "import": {
48
+ "types": "./dist/index.d.ts",
49
+ "default": "./dist/index.js"
50
+ },
51
+ "require": {
52
+ "types": "./dist/index.d.cts",
53
+ "default": "./dist/index.cjs"
54
+ }
55
+ },
56
+ "./package.json": "./package.json"
57
+ },
58
+ "scripts": {
59
+ "build": "tsup",
60
+ "dev": "tsup --watch",
61
+ "typecheck": "tsc --noEmit",
62
+ "test": "vitest run",
63
+ "test:watch": "vitest",
64
+ "clean": "rm -rf dist",
65
+ "size": "size-limit",
66
+ "size:why": "size-limit --why",
67
+ "check:publish": "publint",
68
+ "docs": "typedoc"
69
+ },
70
+ "size-limit": [
71
+ {
72
+ "name": "core (index)",
73
+ "path": "dist/index.js",
74
+ "limit": "6 kB"
75
+ }
76
+ ],
77
+ "devDependencies": {
78
+ "tsup": "^8.5.0",
79
+ "typescript": "^5.9.3",
80
+ "vitest": "^3.2.4"
81
+ }
82
+ }