-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "@livechat/widget-angular",
"version": "1.3.3",
"sideEffects": false,
"description": "This library allows to render and interact with the LiveChat Chat Widget inside an Angular application",
"main": "dist/widget-angular.cjs.js",
"module": "dist/widget-angular.esm.js",
"types": "dist/widget-angular.d.ts",
"keywords": [
"livechat",
"angular"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/livechat/chat-widget-adapters.git"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "rimraf lib dist && ngc && rollup -c",
"watch:ngc": "ngc --watch",
"watch:rollup": "rollup -c --watch",
"start": "ngc && run-p watch:*"
},
"dependencies": {
"@livechat/widget-core": "^1.3.3"
},
"peerDependencies": {
"@angular/core": "12 || 13 || 14 || 15 || 16 || 17 || 18",
"rxjs": "6 || 7"
},
"devDependencies": {
"@angular/common": "13.1.2",
"@angular/compiler": "13.1.2",
"@angular/compiler-cli": "13.1.2",
"@angular/core": "13.1.2",
"@angular/platform-browser": "13.1.2",
"@angular/platform-browser-dynamic": "13.1.2",
"jest-preset-angular": "^11.0.1",
"rxjs": "7.4.0"
}
}