-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.76 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
{
"name": "@bg-dev/nuxt-s3",
"version": "2.0.1",
"description": "Edge compatible S3 client for Nuxt",
"homepage": "https://nuxt-s3.bg.tn",
"repository": {
"type": "git",
"url": "git+https://github.com/becem-gharbi/nuxt-s3.git"
},
"license": "MIT",
"type": "module",
"keywords": [
"s3",
"edge",
"nuxt",
"serverless"
],
"publishConfig": {
"tag": "latest",
"access": "public"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "npm run lint && npm run typecheck && npm run test && npm run prepack && changelogen --release --r 2.0.1 && npm publish && git push --follow-tags",
"lint": "eslint .",
"test:watch": "vitest watch",
"typecheck": "nuxi typecheck",
"test": "vitest run"
},
"dependencies": {
"@nuxt/kit": "^3.12.4",
"aws4fetch": "^1.0.19",
"defu": "^6.1.4",
"jstoxml": "^5.0.2",
"mime": "^4.0.4",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.4.0",
"@nuxt/module-builder": "^0.8.1",
"@nuxt/schema": "^3.12.4",
"@nuxt/test-utils": "^3.14.0",
"@types/jstoxml": "^2.0.4",
"@types/node": "^22.0.0",
"@types/xml2js": "^0.4.14",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"nuxt": "^3.12.4",
"vitest": "^2.0.4"
},
"packageManager": "pnpm@8.7.0+sha1.4a6f863625170af87d027789f72662e0601ecb57"
}