@aws-amplify/pubsub
Advanced tools
Comparing version 6.1.5-unstable.f17cdf0.0 to 6.1.5
206
package.json
{ | ||
"name": "@aws-amplify/pubsub", | ||
"version": "6.1.5-unstable.f17cdf0.0+f17cdf0", | ||
"description": "Pubsub category of aws-amplify", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.mjs", | ||
"typings": "./dist/esm/index.d.ts", | ||
"react-native": "./src/index.ts", | ||
"sideEffects": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage", | ||
"test:size": "size-limit", | ||
"build-with-test": "npm run clean && npm run build", | ||
"build:umd": "webpack && webpack --config ./webpack.config.dev.js", | ||
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs && cp -R src/vendor dist/cjs/vendor && cp -R src/vendor dist/esm/vendor", | ||
"build:watch": "mkdirp dist/esm/vendor && mkdirp dist/cjs/vendor && cp -R src/vendor dist/cjs/vendor && cp -R src/vendor dist/esm/vendor && rollup --forceExit -c rollup.config.mjs --watch", | ||
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd", | ||
"clean": "npm run clean:size && rimraf dist lib lib-esm", | ||
"clean:size": "rimraf dual-publish-tmp tmp*", | ||
"format": "echo \"Not implemented\"", | ||
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage", | ||
"lint:fix": "eslint '**/*.{ts,tsx}' --fix", | ||
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 93.0 -i src/vendor/paho-mqtt.js" | ||
}, | ||
"typesVersions": { | ||
">=4.2": { | ||
"iot": [ | ||
"./dist/esm/clients/iot.d.ts" | ||
], | ||
"mqtt": [ | ||
"./dist/esm/clients/mqtt.d.ts" | ||
] | ||
} | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./dist/esm/index.d.ts", | ||
"import": "./dist/esm/index.mjs", | ||
"require": "./dist/cjs/index.js", | ||
"react-native": "./src/index.ts" | ||
}, | ||
"./iot": { | ||
"types": "./dist/esm/clients/iot.d.ts", | ||
"import": "./dist/esm/clients/iot.mjs", | ||
"require": "./dist/cjs/clients/iot.js", | ||
"react-native": "./src/clients/iot.ts" | ||
}, | ||
"./mqtt": { | ||
"types": "./dist/esm/clients/mqtt.d.ts", | ||
"import": "./dist/esm/clients/mqtt.mjs", | ||
"require": "./dist/cjs/clients/mqtt.js", | ||
"react-native": "./src/clients/mqtt.ts" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aws-amplify/amplify-js.git" | ||
}, | ||
"author": "Amazon Web Services", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/aws/aws-amplify/issues" | ||
}, | ||
"homepage": "https://aws-amplify.github.io/", | ||
"files": [ | ||
"dist/cjs", | ||
"dist/esm", | ||
"src", | ||
"iot", | ||
"mqtt" | ||
], | ||
"dependencies": { | ||
"@aws-amplify/auth": "6.3.1-unstable.f17cdf0.0+f17cdf0", | ||
"buffer": "4.9.2", | ||
"graphql": "15.8.0", | ||
"rxjs": "^7.8.1", | ||
"tslib": "^2.5.0", | ||
"url": "0.11.0" | ||
}, | ||
"peerDependencies": { | ||
"@aws-amplify/core": "6.2.1-unstable.f17cdf0.0+f17cdf0" | ||
}, | ||
"devDependencies": { | ||
"@aws-amplify/core": "6.2.1-unstable.f17cdf0.0+f17cdf0", | ||
"typescript": "5.0.2" | ||
}, | ||
"size-limit": [ | ||
{ | ||
"name": "PubSub (IoT provider)", | ||
"path": "./dist/esm/index.mjs", | ||
"import": "{ generateClient }", | ||
"limit": "1.2 kB" | ||
}, | ||
{ | ||
"name": "PubSub (Mqtt provider)", | ||
"path": "./dist/esm/clients/mqtt.mjs", | ||
"import": "{ generateClient }", | ||
"limit": "1.07 kB" | ||
} | ||
], | ||
"gitHead": "f17cdf0077387ee275bea245632f1a9b88089e1e" | ||
"name": "@aws-amplify/pubsub", | ||
"version": "6.1.5", | ||
"description": "Pubsub category of aws-amplify", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.mjs", | ||
"typings": "./dist/esm/index.d.ts", | ||
"react-native": "./src/index.ts", | ||
"sideEffects": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage", | ||
"test:size": "size-limit", | ||
"build-with-test": "npm run clean && npm run build", | ||
"build:umd": "webpack && webpack --config ./webpack.config.dev.js", | ||
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs && cp -R src/vendor dist/cjs/vendor && cp -R src/vendor dist/esm/vendor", | ||
"build:watch": "mkdirp dist/esm/vendor && mkdirp dist/cjs/vendor && cp -R src/vendor dist/cjs/vendor && cp -R src/vendor dist/esm/vendor && rollup --forceExit -c rollup.config.mjs --watch", | ||
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd", | ||
"clean": "npm run clean:size && rimraf dist lib lib-esm", | ||
"clean:size": "rimraf dual-publish-tmp tmp*", | ||
"format": "echo \"Not implemented\"", | ||
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage", | ||
"lint:fix": "eslint '**/*.{ts,tsx}' --fix", | ||
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 93.0 -i src/vendor/paho-mqtt.js" | ||
}, | ||
"typesVersions": { | ||
">=4.2": { | ||
"iot": [ | ||
"./dist/esm/clients/iot.d.ts" | ||
], | ||
"mqtt": [ | ||
"./dist/esm/clients/mqtt.d.ts" | ||
] | ||
} | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./dist/esm/index.d.ts", | ||
"import": "./dist/esm/index.mjs", | ||
"require": "./dist/cjs/index.js", | ||
"react-native": "./src/index.ts" | ||
}, | ||
"./iot": { | ||
"types": "./dist/esm/clients/iot.d.ts", | ||
"import": "./dist/esm/clients/iot.mjs", | ||
"require": "./dist/cjs/clients/iot.js", | ||
"react-native": "./src/clients/iot.ts" | ||
}, | ||
"./mqtt": { | ||
"types": "./dist/esm/clients/mqtt.d.ts", | ||
"import": "./dist/esm/clients/mqtt.mjs", | ||
"require": "./dist/cjs/clients/mqtt.js", | ||
"react-native": "./src/clients/mqtt.ts" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aws-amplify/amplify-js.git" | ||
}, | ||
"author": "Amazon Web Services", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/aws/aws-amplify/issues" | ||
}, | ||
"homepage": "https://aws-amplify.github.io/", | ||
"files": [ | ||
"dist/cjs", | ||
"dist/esm", | ||
"src", | ||
"iot", | ||
"mqtt" | ||
], | ||
"dependencies": { | ||
"@aws-amplify/auth": "6.3.1", | ||
"buffer": "4.9.2", | ||
"graphql": "15.8.0", | ||
"rxjs": "^7.8.1", | ||
"tslib": "^2.5.0", | ||
"url": "0.11.0" | ||
}, | ||
"peerDependencies": { | ||
"@aws-amplify/core": "^6.1.0" | ||
}, | ||
"devDependencies": { | ||
"@aws-amplify/core": "6.2.1", | ||
"typescript": "5.0.2" | ||
}, | ||
"size-limit": [ | ||
{ | ||
"name": "PubSub (IoT provider)", | ||
"path": "./dist/esm/index.mjs", | ||
"import": "{ generateClient }", | ||
"limit": "1.2 kB" | ||
}, | ||
{ | ||
"name": "PubSub (Mqtt provider)", | ||
"path": "./dist/esm/clients/mqtt.mjs", | ||
"import": "{ generateClient }", | ||
"limit": "1.07 kB" | ||
} | ||
], | ||
"gitHead": "7436f23bbc82e5021d6e550132e164adfa08de13" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
0
518039
+ Added@aws-amplify/auth@6.3.1(transitive)
+ Added@aws-amplify/core@6.5.1(transitive)
+ Added@aws-crypto/sha256-js@5.2.0(transitive)
+ Added@aws-crypto/util@5.2.0(transitive)
+ Added@aws-sdk/types@3.398.0(transitive)
+ Added@smithy/is-array-buffer@2.2.0(transitive)
+ Added@smithy/types@2.12.0(transitive)
+ Added@smithy/util-buffer-from@2.2.0(transitive)
+ Added@smithy/util-hex-encoding@2.0.0(transitive)
+ Added@smithy/util-utf8@2.3.0(transitive)
+ Added@types/uuid@9.0.8(transitive)
+ Addedjs-cookie@3.0.5(transitive)
+ Addeduuid@9.0.1(transitive)
Updated@aws-amplify/auth@6.3.1