@qrvey/object-storage 1.0.1-beta → 1.0.2-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,31 +1,7 @@
1
1
  {
2
- "name": "@qrvey/object-storage",
3
- "types": "dist/types/index.d.ts",
4
- "main": "dist/cjs/index.js",
5
- "version": "1.0.1-beta",
6
- "license": "MIT",
7
- "exports": {
8
- ".": {
9
- "import": "./dist/esm/index.mjs",
10
- "require": "./dist/cjs/index.js",
11
- "default": "./dist/cjs/index.js"
12
- }
13
- },
14
- "scripts": {
15
- "test": "jest",
16
- "test:cov": "jest --coverage && chmod +x ./coverageReader.sh && sh ./coverageReader.sh",
17
- "type-check": "tsc",
18
- "build:clean": "rm -rf dist",
19
- "build:compile:cjs": "tsup --config ./tsup.config.cjs.ts",
20
- "build:compile:esm": "tsup --config ./tsup.config.esm.ts",
21
- "build:compile:types": "tsup --config ./tsup.config.types.ts",
22
- "build:compile": "yarn build:compile:cjs && yarn build:compile:esm && yarn build:compile:types",
23
- "build": "yarn build:clean && yarn build:compile",
24
- "prepare-publish": "yarn install && yarn test:cov && yarn build",
25
- "publish-package": "yarn prepare-publish && npm publish --tag beta"
26
- },
27
2
  "dependencies": {
28
3
  "@aws-sdk/client-s3": "3.x",
4
+ "@aws-sdk/credential-provider-node": "3.774.0",
29
5
  "@aws-sdk/lib-storage": "3.x",
30
6
  "@aws-sdk/s3-request-presigner": "3.x",
31
7
  "@azure/storage-blob": "12.23.0"
@@ -40,8 +16,12 @@
40
16
  "tsup": "7.2.0",
41
17
  "typescript": "5.2.2"
42
18
  },
43
- "publishConfig": {
44
- "access": "public"
19
+ "exports": {
20
+ ".": {
21
+ "default": "./dist/cjs/index.js",
22
+ "import": "./dist/esm/index.mjs",
23
+ "require": "./dist/cjs/index.js"
24
+ }
45
25
  },
46
26
  "files": [
47
27
  "dist/*"
@@ -51,5 +31,26 @@
51
31
  "aws lambda",
52
32
  "fetch",
53
33
  "rest"
54
- ]
34
+ ],
35
+ "license": "MIT",
36
+ "main": "dist/cjs/index.js",
37
+ "name": "@qrvey/object-storage",
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "scripts": {
42
+ "build": "yarn build:clean && yarn build:compile",
43
+ "build:clean": "rm -rf dist",
44
+ "build:compile": "yarn build:compile:cjs && yarn build:compile:esm && yarn build:compile:types",
45
+ "build:compile:cjs": "tsup --config ./tsup.config.cjs.ts",
46
+ "build:compile:esm": "tsup --config ./tsup.config.esm.ts",
47
+ "build:compile:types": "tsup --config ./tsup.config.types.ts",
48
+ "prepare-publish": "yarn install && yarn test:cov && yarn build",
49
+ "publish-package": "yarn prepare-publish && npm publish --tag=beta",
50
+ "test": "jest",
51
+ "test:cov": "jest --coverage && chmod +x ./coverageReader.sh && sh ./coverageReader.sh",
52
+ "type-check": "tsc"
53
+ },
54
+ "types": "dist/types/index.d.ts",
55
+ "version": "1.0.2-beta"
55
56
  }