-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.61 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
{
"name": "@vonage/vivid-react-wrapper",
"version": "1.3.0",
"description": "Wrapper for custom element as React component",
"homepage": "https://github.com/Vonage/vivid-react-wrapper",
"repository": "github:Vonage/vivid-react-wrapper",
"license": "Apache-2.0",
"main": "./dist/index.cjs.js",
"browser": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist/*",
"src/*",
"doc/*",
"readme.md"
],
"scripts": {
"build": "vite build",
"test": "vitest"
},
"keywords": [
"Vivid",
"React",
"Custom Element",
"Wrapper"
],
"contributors": [
{
"name": "Alexander Mazuruk",
"email": "[email protected]",
"url": "https://github.com/k-paxian"
},
{
"name": "Jakub Karwatka",
"email": "[email protected]"
},
{
"name": "Piotr Misiejuk",
"email": "[email protected]"
},
{
"name": "Tal Weinfeld"
}
],
"devDependencies": {
"@testing-library/dom": "8.19.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash": "4.14.191",
"@types/react": "18.0.26",
"jsdom": "21.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tslib": "2.4.1",
"typescript": "4.9.4",
"vite": "4.0.4",
"vite-plugin-dts": "1.7.1",
"vitest": "0.27.1"
},
"peerDependencies": {
"lodash": "^4.17.15",
"react": ">=16.13.1",
"react-dom": ">=16.14.0"
}
}