-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.91 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@mzinga/plugin-cloud-storage",
"description": "The official cloud storage plugin for MZinga",
"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-storage"
},
"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}",
"prepublishOnly": "pnpm clean && pnpm build",
"test": "echo \"No tests available.\"",
"version": "npm version"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.888.0",
"@aws-sdk/lib-storage": "^3.267.0",
"@azure/abort-controller": "^1.0.0",
"@azure/storage-blob": "^12.11.0",
"@google-cloud/storage": "^6.4.1",
"mzinga": "^0.1.0"
},
"peerDependenciesMeta": {
"@aws-sdk/client-s3": {
"optional": true
},
"@aws-sdk/lib-storage": {
"optional": true
},
"@azure/abort-controller": {
"optional": true
},
"@azure/storage-blob": {
"optional": true
},
"@google-cloud/storage": {
"optional": true
}
},
"files": [
"dist",
"*.js",
"*.d.ts"
],
"devDependencies": {
"@aws-sdk/client-s3": "^3.888.0",
"@aws-sdk/lib-storage": "^3.267.0",
"@azure/core-http": "^3.0.0",
"@azure/storage-blob": "^12.11.0",
"@google-cloud/storage": "^6.4.1",
"@types/express": "^4.17.9",
"@types/find-node-modules": "^2.1.2",
"cross-env": "^7.0.3",
"dotenv": "17.2.3",
"mzinga": "workspace:*",
"nodemon": "3.0.3",
"rimraf": "^4.1.2",
"ts-node": "^9.1.1",
"webpack": "5.104.1"
},
"dependencies": {
"find-node-modules": "^2.1.3",
"range-parser": "^1.2.1"
}
}