-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "@daily-co/daily-vcs-web",
"description": "This package enables developers to render a VCSComposition inside a given DOM element in the browser.",
"version": "0.0.2-alpha.5",
"license": "BSD-2-Clause",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"typings": "dist/typings/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "jest",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"@daily-co/daily-js": ">=0.45.0 <1"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "harshithpabbati",
"size-limit": [
{
"path": "dist/index.cjs.js",
"limit": "10 KB"
},
{
"path": "dist/index.esm.js",
"limit": "10 KB"
},
{
"path": "dist/index.umd.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@daily-co/daily-js": ">=0.71.2",
"@faker-js/faker": "^9.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@size-limit/preset-small-lib": "^8.2.6",
"@testing-library/jest-dom": "^6.5.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.0",
"eslint": "^8.44.0",
"fake-mediastreamtrack": "^1.2.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"rollup": "^3.26.2",
"size-limit": "^8.2.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
}
}