-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.18 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
{
"name": "@aws-amplify/predictions",
"version": "6.1.72",
"description": "Machine learning category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/index.d.ts",
"react-native": "./dist/cjs/index.js",
"sideEffects": [
"./dist/cjs/Predictions.js",
"./dist/esm/Predictions.mjs"
],
"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",
"build:watch": "npm run build:esm-cjs -- --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 --glob dual-publish-tmp tmp*",
"format": "echo \"Not implemented\"",
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"generate-docs-local": "typedoc --out docs src",
"generate-docs-root": "typedoc --out ../../docs src",
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 87.84"
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-js.git",
"directory": "packages/predictions"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/aws-amplify/issues"
},
"homepage": "https://docs.amplify.aws/",
"files": [
"dist/cjs",
"dist/esm",
"src"
],
"dependencies": {
"@aws-amplify/storage": "6.15.0",
"@aws-sdk/client-comprehend": "^3.1012.0",
"@aws-sdk/client-polly": "^3.1012.0",
"@aws-sdk/client-rekognition": "^3.1012.0",
"@aws-sdk/client-textract": "^3.1012.0",
"@aws-sdk/client-translate": "^3.1012.0",
"@smithy/eventstream-codec": "2.0.9",
"@smithy/util-utf8": "2.0.0",
"buffer": "4.9.2",
"tslib": "^2.5.0"
},
"peerDependencies": {
"@aws-amplify/core": "^6.16.2"
},
"devDependencies": {
"@aws-amplify/core": "6.16.3"
},
"size-limit": [
{
"name": "Predictions",
"path": "./dist/esm/index.mjs",
"import": "{ Predictions }",
"limit": "77.5 kB"
}
]
}