@muhgholy/next-drive 2.2.3 → 2.2.5
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 +107 -106
package/package.json
CHANGED
|
@@ -1,108 +1,109 @@
|
|
|
1
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
2
|
+
"name": "@muhgholy/next-drive",
|
|
3
|
+
"version": "2.2.5",
|
|
4
|
+
"description": "File storage and management for Next.js applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
"./server": {
|
|
8
|
+
"types": "./dist/server/index.d.ts",
|
|
9
|
+
"import": "./dist/server/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./server/express": {
|
|
12
|
+
"types": "./dist/server/express.d.ts",
|
|
13
|
+
"import": "./dist/server/express.js"
|
|
14
|
+
},
|
|
15
|
+
"./client": {
|
|
16
|
+
"types": "./dist/client/index.d.ts",
|
|
17
|
+
"import": "./dist/client/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./schemas": {
|
|
20
|
+
"types": "./dist/schemas.d.ts",
|
|
21
|
+
"import": "./dist/schemas.js"
|
|
22
|
+
},
|
|
23
|
+
"./client/styles.css": "./dist/client/styles.css"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
29
|
+
"sideEffects": [
|
|
30
|
+
"*.css",
|
|
31
|
+
"./dist/client/index.js"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsup && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
35
|
+
"dev": "tsup --watch",
|
|
36
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"test": "vitest",
|
|
39
|
+
"test:coverage": "vitest --coverage",
|
|
40
|
+
"test:integration": "vitest -c vitest.integration.config.ts"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"mongoose": ">=7.0.0",
|
|
44
|
+
"next": ">=14.0.0",
|
|
45
|
+
"react": ">=18.0.0",
|
|
46
|
+
"react-dom": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@dnd-kit/core": "^6.3.1",
|
|
50
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
51
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
52
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
53
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
54
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
55
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
56
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
57
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
58
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
59
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
60
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
61
|
+
"class-variance-authority": "^0.7.1",
|
|
62
|
+
"clsx": "^2.1.1",
|
|
63
|
+
"date-fns": "^4.1.0",
|
|
64
|
+
"fluent-ffmpeg": "^2.1.2",
|
|
65
|
+
"formidable": "^3.5.4",
|
|
66
|
+
"googleapis": "^169.0.0",
|
|
67
|
+
"lucide-react": "^0.562.0",
|
|
68
|
+
"sharp": "^0.33.0",
|
|
69
|
+
"tailwind-merge": "^3.4.0",
|
|
70
|
+
"zod": "^3.22.0"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@eslint/js": "^9.39.2",
|
|
74
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
75
|
+
"@semantic-release/exec": "^7.1.0",
|
|
76
|
+
"@semantic-release/git": "^10.0.1",
|
|
77
|
+
"@types/express": "^5.0.6",
|
|
78
|
+
"@types/fluent-ffmpeg": "^2.1.21",
|
|
79
|
+
"@types/formidable": "^3.4.6",
|
|
80
|
+
"@types/node": "^20.0.0",
|
|
81
|
+
"@types/react": "^18.0.0",
|
|
82
|
+
"@types/react-dom": "^18.0.0",
|
|
83
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
84
|
+
"eslint": "^8.0.0",
|
|
85
|
+
"jsdom": "^27.3.0",
|
|
86
|
+
"mongoose": ">=7.0.0",
|
|
87
|
+
"semantic-release": "^24.2.9",
|
|
88
|
+
"tsc-alias": "^1.8.16",
|
|
89
|
+
"tsup": "^8.0.0",
|
|
90
|
+
"typescript": "^5.0.0",
|
|
91
|
+
"typescript-eslint": "^8.50.1",
|
|
92
|
+
"vitest": "^4.0.16"
|
|
93
|
+
},
|
|
94
|
+
"keywords": [
|
|
95
|
+
"next.js",
|
|
96
|
+
"file-storage",
|
|
97
|
+
"drive",
|
|
98
|
+
"upload",
|
|
99
|
+
"file-management"
|
|
100
|
+
],
|
|
101
|
+
"publishConfig": {
|
|
102
|
+
"access": "public"
|
|
103
|
+
},
|
|
104
|
+
"license": "MIT",
|
|
105
|
+
"repository": {
|
|
106
|
+
"type": "git",
|
|
107
|
+
"url": "https://github.com/muhgholy/next-drive"
|
|
108
|
+
}
|
|
108
109
|
}
|