-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "@pipecat-ai/client-js",
"version": "0.3.2",
"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"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "jest --silent && parcel build --no-cache",
"dev": "parcel watch",
"lint": "eslint src/ --report-unused-disable-directives --max-warnings 0",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/clone-deep": "^4.0.4",
"@types/jest": "^29.5.12",
"@types/uuid": "^10.0.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"dependencies": {
"@types/events": "^3.0.3",
"clone-deep": "^4.0.1",
"events": "^3.3.0",
"typed-emitter": "^2.1.0",
"uuid": "^10.0.0"
}
}