forked from yinkakun/medusa-file-r2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "@agilo/medusa-file-r2",
"version": "1.0.0",
"description": "Cloudflare R2 storage plugin for Medusa",
"author": "Ante Primorac <[email protected]>",
"license": "MIT",
"scripts": {
"bundle": "esbuild src/services/** --outdir=services --format=cjs --target=esnext",
"dev": "npm run bundle -- --watch",
"build": "npm run bundle",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Agilo/medusa-file-r2.git"
},
"files": [
"services"
],
"dependencies": {
"aws-sdk": "^2.1572.0"
},
"devDependencies": {
"@medusajs/medusa": ">=1.20.0",
"@types/aws-sdk": "^2.7.0",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-preset-medusa-package": "^1.1.19",
"cross-env": "^7.0.3",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"np": "^10.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@medusajs/medusa": ">=1.20.0"
},
"keywords": [
"medusa-plugin",
"medusa-file-plugin",
"cloudflare-r2"
],
"publishConfig": {
"access": "public"
}
}