@aws-amplify/predictions 5.0.9 → 5.0.10-unstableV5.4
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 +32 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/predictions",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.10-unstableV5.4+d34c01aa0",
|
|
4
4
|
"description": "Machine learning category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -14,13 +14,14 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"test": "jest -w 1 --passWithNoTests --coverage --maxWorkers 2",
|
|
17
|
+
"test:size": "size-limit",
|
|
17
18
|
"build-with-test": "npm run clean && npm test && tsc && webpack -p",
|
|
18
19
|
"build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js",
|
|
19
20
|
"build:esm": "node ./build es6",
|
|
20
21
|
"build:cjs:watch": "node ./build es5 --watch",
|
|
21
22
|
"build:esm:watch": "node ./build es6 --watch",
|
|
22
23
|
"build": "npm run clean && npm run build:esm && npm run build:cjs",
|
|
23
|
-
"clean": "rimraf lib-esm lib dist",
|
|
24
|
+
"clean": "rimraf lib-esm lib dist dual-publish-tmp",
|
|
24
25
|
"format": "echo \"Not implemented\"",
|
|
25
26
|
"lint": "tslint 'src/**/*.ts' && npm run ts-coverage",
|
|
26
27
|
"generate-docs-local": "typedoc --out docs src",
|
|
@@ -43,8 +44,8 @@
|
|
|
43
44
|
"src"
|
|
44
45
|
],
|
|
45
46
|
"dependencies": {
|
|
46
|
-
"@aws-amplify/core": "5.0.
|
|
47
|
-
"@aws-amplify/storage": "5.0.
|
|
47
|
+
"@aws-amplify/core": "5.0.10-unstableV5.4+d34c01aa0",
|
|
48
|
+
"@aws-amplify/storage": "5.0.10-unstableV5.4+d34c01aa0",
|
|
48
49
|
"@aws-sdk/client-comprehend": "3.6.1",
|
|
49
50
|
"@aws-sdk/client-polly": "3.6.1",
|
|
50
51
|
"@aws-sdk/client-rekognition": "3.6.1",
|
|
@@ -55,6 +56,32 @@
|
|
|
55
56
|
"tslib": "^1.8.0",
|
|
56
57
|
"uuid": "^3.2.1"
|
|
57
58
|
},
|
|
59
|
+
"size-limit": [
|
|
60
|
+
{
|
|
61
|
+
"name": "Predictions (all providers)",
|
|
62
|
+
"path": "./lib-esm/index.js",
|
|
63
|
+
"import": "{ Amplify, Predictions, AmazonAIPredictionsProvider }",
|
|
64
|
+
"limit": "131.5 kB"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Predictions (Convert provider)",
|
|
68
|
+
"path": "./lib-esm/index.js",
|
|
69
|
+
"import": "{ Amplify, Predictions, AmazonAIConvertPredictionsProvider }",
|
|
70
|
+
"limit": "60 kB"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "Predictions (Identify provider)",
|
|
74
|
+
"path": "./lib-esm/index.js",
|
|
75
|
+
"import": "{ Amplify, Predictions, AmazonAIIdentifyPredictionsProvider }",
|
|
76
|
+
"limit": "102 kB"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Predictions (Interpret provider)",
|
|
80
|
+
"path": "./lib-esm/index.js",
|
|
81
|
+
"import": "{ Amplify, Predictions, AmazonAIInterpretPredictionsProvider }",
|
|
82
|
+
"limit": "44 kB"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
58
85
|
"jest": {
|
|
59
86
|
"globals": {
|
|
60
87
|
"ts-jest": {
|
|
@@ -99,5 +126,5 @@
|
|
|
99
126
|
"lib-esm"
|
|
100
127
|
]
|
|
101
128
|
},
|
|
102
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "d34c01aa04599508e9473d128779bc8212343ece"
|
|
103
130
|
}
|