This PR updates the `repository.directory` field in the `package.json` files for packages located within the `modules` folder.
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "@medusajs/file-s3",
|
|
"version": "2.2.0",
|
|
"description": "S3 protocol file storage for Medusa. Supports any S3-compatible storage provider",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/modules/providers/file-s3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/__tests__",
|
|
"!dist/**/__mocks__",
|
|
"!dist/**/__fixtures__"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest --passWithNoTests src",
|
|
"test:integration": "jest --forceExit -- integration-tests/__tests__/*.spec.ts",
|
|
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@medusajs/framework": "^2.2.0",
|
|
"@swc/core": "^1.7.28",
|
|
"@swc/jest": "^0.2.36",
|
|
"axios": "^1.6.8",
|
|
"jest": "^29.7.0",
|
|
"rimraf": "^5.0.1",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.556.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.556.0",
|
|
"ulid": "^2.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@medusajs/framework": "^2.0.0"
|
|
},
|
|
"keywords": [
|
|
"medusa-plugin",
|
|
"medusa-plugin-s3"
|
|
]
|
|
}
|