@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.
- 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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
+
}
|