-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "@microsoft/omnichannel-chat-sdk",
"version": "1.10.10-0",
"description": "Microsoft Omnichannel Chat SDK",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build:tsc": "tsc",
"postbuild:tsc": "node ./scripts/copy_files.js",
"prebuild:tsc": "eslint src --ext .ts",
"test": "npm run test:jsdom && npm run test:node",
"test:jsdom": "jest --config jest.config.jsdom.js",
"test:node": "jest --config jest.config.node.js",
"lint": "eslint src --ext .ts"
},
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/omnichannel-chat-sdk"
},
"homepage": "https://github.com/microsoft/omnichannel-chat-sdk#readme",
"keywords": [
"SDK",
"chat",
"livechat",
"support",
"bot",
"headless",
"customer"
],
"devDependencies": {
"@types/core-js": "^2.5.5",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.4.2",
"@typescript-eslint/parser": "^5.4.2",
"eslint": "^7.32.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.4.2"
},
"dependencies": {
"@azure/communication-chat": "1.5.4",
"@azure/communication-common": "2.3.1",
"@microsoft/botframework-webchat-adapter-azure-communication-chat": "^0.0.1-beta.1",
"@microsoft/ocsdk": "^0.5.11",
"@microsoft/omnichannel-amsclient": "^0.1.7",
"@microsoft/omnichannel-ic3core": "^0.1.4"
}
}