-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 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
{
"name": "@humeai/voice-react",
"version": "0.2.0-beta.2",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/HumeAI/empathic-voice-api-js.git",
"directory": "packages/react"
},
"files": [
"package.json",
"dist"
],
"scripts": {
"test": "vitest",
"test-watch": "vitest --watch",
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint ./src && tsc --noEmit -p .",
"pack": "npm pack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"date-fns": "^3.6.0",
"hume": "0.10.3",
"meyda": "^5.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"type-fest": "^4.26.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@humeai/eslint-config": "workspace:*",
"@humeai/typescript-config": "workspace:*",
"@testing-library/react": "^14.2.1",
"@testing-library/react-hooks": "^8.0.1",
"@total-typescript/shoehorn": "^0.1.2",
"@types/eslint": "^8.56.2",
"@types/meyda": "^4.3.8",
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"tsup": "^8.3.5",
"typescript": "^5.3.3",
"vitest": "^3.1.2"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"browserslist": [
"last 2 Chrome versions, last 2 iOS major versions, Firefox ESR, not dead"
]
}