-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 920 Bytes
/
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
{
"name": "@livechat/widget-vue",
"version": "1.0.1",
"sideEffects": false,
"description": "This library allows to render and interact with the LiveChat Chat Widget inside a Vue 3 application",
"main": "dist/widget-vue.cjs.js",
"module": "dist/widget-vue.esm.js",
"unpkg": "dist/widget-vue.umd.js",
"types": "dist/widget-vue.d.ts",
"keywords": [
"livechat",
"vue"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/livechat/chat-widget-adapters.git"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "rimraf dist && rollup -c",
"start": "rollup -c -w"
},
"dependencies": {
"@livechat/widget-core": "^1.0.1"
},
"peerDependencies": {
"vue": "3"
},
"devDependencies": {
"eslint-plugin-vue": "8.1.1",
"vue": "3.2.22",
"vue-eslint-parser": "8.0.1"
}
}