This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 KB
/
package.json
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": "@thefat32/aws-amplify-lex-provider-v2",
"version": "1.0.3",
"description": "Lex V2 provider for Amplify Interactions",
"author": "Lucas Picchi",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
},
"files": [
"/src",
"/lib",
"README.md",
"CHANGELOG.md"
],
"types": "lib/types/index.d.ts",
"keywords": [
"aws",
"amplify",
"interactions",
"lex2",
"lex"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thefat32/aws-amplify-lex-provider-v2.git"
},
"homepage": "https://github.com/thefat32/aws-amplify-lex-provider-v2#readme",
"bugs": {
"url": "https://github.com/thefat32/aws-amplify-lex-provider-v2/issues"
},
"scripts": {
"clean": "rimraf lib",
"declarations": "tsc --esModuleInterop -t es5 -p tsconfig.json",
"build:esm": "cross-env BABEL_ENV=esmUnbundled babel src --extensions '.ts' --out-dir 'lib/esm' --source-maps",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions '.ts' --out-dir 'lib/cjs' --source-maps",
"build:bundles": "cross-env BABEL_ENV=esmBundled rollup -c",
"build": "npm-run-all -l clean -p build:esm build:cjs declarations",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-lex-runtime-v2": "^3.31.0",
"pako": "^2.0.4"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@types/pako": "^1.0.2",
"cross-env": "^7.0.3",
"jest": "^27.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"peerDependenciess": {
"@aws-amplify/core": "^4.0.0"
}
}