@digibuffer/file-manager-core 1.0.0 → 1.0.1

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.
Files changed (1) hide show
  1. package/package.json +76 -70
package/package.json CHANGED
@@ -1,70 +1,76 @@
1
- {
2
- "name": "@digibuffer/file-manager-core",
3
- "description": "Core file management library with full CRUD operations for cloud storage (R2/S3) with optional PostgreSQL database integration.",
4
- "version": "1.0.0",
5
- "type": "module",
6
- "scripts": {
7
- "build": "tsdown",
8
- "dev": "tsdown --watch",
9
- "lint": "tsc",
10
- "test": "vitest"
11
- },
12
- "files": [
13
- "dist"
14
- ],
15
- "exports": {
16
- "./package.json": "./package.json",
17
- ".": {
18
- "import": "./dist/index.js",
19
- "types": "./dist/index.d.ts"
20
- },
21
- "./adapters/next": {
22
- "import": "./dist/adapters/next.js",
23
- "types": "./dist/adapters/next.d.ts"
24
- }
25
- },
26
- "dependencies": {
27
- "@digibuffer/upload-lib-server": "^3.0.12",
28
- "zod": "^4.1.12"
29
- },
30
- "peerDependencies": {
31
- "postgres": "^3.4.0"
32
- },
33
- "peerDependenciesMeta": {
34
- "postgres": {
35
- "optional": true
36
- }
37
- },
38
- "devDependencies": {
39
- "@repo/tsconfig": "*",
40
- "@types/node": "^24",
41
- "postgres": "^3.4.0",
42
- "tsdown": "^0.15.12",
43
- "typescript": "^5.9.3",
44
- "vitest": "^4.0.5"
45
- },
46
- "keywords": [
47
- "file-management",
48
- "file-operations",
49
- "r2",
50
- "s3",
51
- "cloudflare",
52
- "storage",
53
- "database",
54
- "postgresql",
55
- "move",
56
- "copy",
57
- "rename",
58
- "delete"
59
- ],
60
- "license": "MIT",
61
- "homepage": "https://upload-lib.com",
62
- "bugs": {
63
- "url": "https://github.com/dileepindla/upload-lib/issues"
64
- },
65
- "author": "Dilip",
66
- "repository": {
67
- "type": "git",
68
- "url": "git+https://github.com/dileepindla/upload-lib.git"
69
- }
70
- }
1
+ {
2
+ "name": "@digibuffer/file-manager-core",
3
+ "description": "Core file management library with full CRUD operations for cloud storage (R2/S3) with optional PostgreSQL database integration.",
4
+ "version": "1.0.1",
5
+ "type": "module",
6
+ "scripts": {
7
+ "build": "tsdown",
8
+ "dev": "tsdown --watch",
9
+ "lint": "tsc",
10
+ "test": "vitest"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "exports": {
16
+ "./package.json": "./package.json",
17
+ ".": {
18
+ "import": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/index.js",
21
+ "require": "./dist/index.js"
22
+ },
23
+ "./adapters/next": {
24
+ "import": "./dist/adapters/next.js",
25
+ "types": "./dist/adapters/next.d.ts",
26
+ "default": "./dist/adapters/next.js",
27
+ "require": "./dist/adapters/next.js"
28
+ }
29
+ },
30
+ "dependencies": {
31
+ "@digibuffer/upload-lib-server": "^3.0.14",
32
+ "zod": "^4.1.12"
33
+ },
34
+ "peerDependencies": {
35
+ "postgres": "^3.4.0"
36
+ },
37
+ "peerDependenciesMeta": {
38
+ "postgres": {
39
+ "optional": true
40
+ }
41
+ },
42
+ "devDependencies": {
43
+ "@repo/tsconfig": "*",
44
+ "@types/node": "^24",
45
+ "postgres": "^3.4.0",
46
+ "tsdown": "^0.15.12",
47
+ "typescript": "^5.9.3",
48
+ "vitest": "^4.0.5"
49
+ },
50
+ "keywords": [
51
+ "file-management",
52
+ "file-operations",
53
+ "r2",
54
+ "s3",
55
+ "cloudflare",
56
+ "storage",
57
+ "database",
58
+ "postgresql",
59
+ "move",
60
+ "copy",
61
+ "rename",
62
+ "delete"
63
+ ],
64
+ "license": "MIT",
65
+ "homepage": "https://upload-lib.com",
66
+ "bugs": {
67
+ "url": "https://github.com/dileepindla/upload-lib/issues"
68
+ },
69
+ "author": "Dilip",
70
+ "repository": {
71
+ "type": "git",
72
+ "url": "git+https://github.com/dileepindla/upload-lib.git"
73
+ },
74
+ "main": "./dist/index.js",
75
+ "module": "./dist/index.js"
76
+ }