-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "pipecat-react-native-transports",
"private": true,
"workspaces": [
"libs/*",
"transports/*",
"examples/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "yarn workspaces foreach run build",
"clean": "yarn workspaces foreach run clean",
"typecheck": "yarn workspaces foreach run typecheck",
"lint": "yarn workspaces foreach run lint",
"lint:fix": "yarn workspaces foreach run lint:fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"devDependencies": {
"@daily-co/react-native-webrtc": "^124.0.6-daily.1",
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@pipecat-ai/client-js": "^1.4.0",
"@react-native/eslint-config": "^0.82.1",
"@types/jest": "29.5.5",
"eslint": "9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"prettier": "3.0.3",
"typescript": "5.9.3"
}
}