-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "@payloadcms/plugin-cloud",
"version": "3.0.0-beta.83",
"description": "The official Payload Cloud plugin",
"homepage": "https://payloadcms.com",
"repository": {
"type": "git",
"url": "https://github.com/payloadcms/payload.git",
"directory": "packages/plugin-cloud"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm build:types && pnpm build:swc",
"build:swc": "swc ./src -d ./dist --config-file .swcrc-build --strip-leading-paths",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"clean": "rimraf {dist,*.tsbuildinfo} && rimraf dev/yarn.lock",
"prepublishOnly": "pnpm clean && pnpm turbo build",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.614.0",
"@aws-sdk/client-s3": "^3.614.0",
"@aws-sdk/credential-providers": "^3.614.0",
"@aws-sdk/lib-storage": "^3.614.0",
"@payloadcms/email-nodemailer": "workspace:*",
"amazon-cognito-identity-js": "^6.1.2",
"nodemailer": "6.9.10",
"resend": "^0.17.2"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/nodemailer": "6.4.14",
"payload": "workspace:*",
"ts-jest": "^29.1.0"
},
"peerDependencies": {
"payload": "workspace:*"
},
"publishConfig": {
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}