forked from pipecat-ai/pipecat-client-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.1 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
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
{
"name": "@pipecat-ai/client-react",
"version": "1.6.0",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pipecat-ai/pipecat-client-web.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.module.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "parcel build --no-cache",
"dev": "parcel watch",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 --ignore-pattern 'dist/'",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^@pipecat-ai/client-js$": "<rootDir>/../client-js/index.ts"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": {
"jsx": "react-jsx",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"allowImportingTsExtensions": false,
"noUnusedLocals": false,
"noUnusedParameters": false
}
}
]
}
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@pipecat-ai/client-js": "*",
"@testing-library/react": "^16.1.0",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"parcel": "^2.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.4.6",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@pipecat-ai/client-js": "*",
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"jotai": "^2.9.0"
}
}