-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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
{
"name": "@mzinga/plugin-cloud",
"description": "The official MZinga Cloud plugin",
"version": "0.1.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://mzinga.io",
"repository": {
"type": "git",
"url": "https://github.com/mzinga-io/mzinga-core.git",
"directory": "packages/plugin-cloud"
},
"scripts": {
"build": "pnpm build:swc && pnpm build:types",
"build:swc": "swc ./src -d ./dist --config-file .swcrc",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"clean": "rimraf {dist,*.tsbuildinfo} && rimraf dev/yarn.lock",
"prepublishOnly": "pnpm clean && pnpm build",
"test": "jest",
"version": "npm version"
},
"peerDependencies": {
"mzinga": "^0.1.0"
},
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.289.0",
"@aws-sdk/client-s3": "^3.888.0",
"@aws-sdk/credential-providers": "^3.289.0",
"@aws-sdk/lib-storage": "^3.267.0",
"amazon-cognito-identity-js": "^6.1.2",
"nodemailer": "^7.0.11"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^29.5.1",
"@types/nodemailer": "6.4.16",
"mzinga": "workspace:*",
"ts-jest": "^29.4.0",
"webpack": "5.104.1"
},
"files": [
"dist"
]
}