-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
110 lines (110 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"version": "0.21.3",
"license": "BSD-2-Clause",
"keywords": [
"daily",
"react",
"hooks",
"audio",
"video",
"chat",
"live",
"webrtc",
"browser",
"library"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"clearJestCache": "jest --clearCache",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext ts,tsx",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"@daily-co/daily-js": ">=0.68.0 <1",
"jotai": "^2",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0"
},
"husky": {
"hooks": {
"pre-commit": "eslint . --ext ts,tsx"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@daily-co/daily-react",
"author": "Daily (https://daily.co)",
"homepage": "https://docs.daily.co/reference/daily-react",
"repository": "github:daily-co/daily-react",
"contributors": [
{
"name": "Christian Stuff",
"url": "https://github.com/Regaddi"
}
],
"module": "dist/daily-react.esm.js",
"size-limit": [
{
"path": "dist/daily-react.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/daily-react.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@size-limit/preset-small-lib": "^5.0.3",
"@testing-library/react": "^15.0.5",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.1",
"@types/lodash.throttle": "^4.1.6",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"fake-mediastreamtrack": "^1.2.0",
"fs-extra": "^10.1.0",
"husky": "^7.0.2",
"jest": "^27.0.5",
"jotai": "^2.9.3",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^5.0.3",
"ts-jest": "^27.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.9.5"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"lodash.throttle": "^4.1.1"
}
}