-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.64 KB
/
package.json
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
{
"name": "@froxz/vite-plugin-s3",
"version": "1.6.0",
"description": "Allows you to upload files to AWS S3 or any other S3 compatible provider",
"author": {
"name": "Sergkei Melingk",
"email": "[email protected]",
"url": "https://github.com/SergkeiM"
},
"license": "MIT",
"homepage": "https://github.com/SergkeiM/vite-plugin-s3",
"repository": "https://github.com/SergkeiM/vite-plugin-s3",
"bugs": {
"url": "https://github.com/SergkeiM/vite-plugin-s3/issues"
},
"keywords": [
"vite",
"s3",
"vite-plugin",
"do-spaces"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "esno scripts/dev.ts",
"build": "esno scripts/build.ts"
},
"peerDependencies": {
"vite": "^3.1.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"mime-types": "^2.1.35",
"recursive-readdir": "^2.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.11.0",
"@types/lodash": "^4.14.191",
"@types/mime-types": "^2.1.1",
"@types/node": "^22.5.4",
"@types/recursive-readdir": "^2.2.1",
"eslint": "^8.57.0",
"esno": "^4.0.0",
"kolorist": "^1.7.0",
"lodash": "^4.17.21",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
}
}