-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "@humeai/voice-embed-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/embed-react"
},
"files": [
"package.json",
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint ./src",
"pack": "npm pack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@humeai/voice-embed": "workspace:*",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@humeai/eslint-config": "workspace:*",
"@humeai/typescript-config": "workspace:*",
"@testing-library/react": "^14.2.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/eslint": "^8.56.6",
"@types/node": "^20.11.30",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"tsup": "^8.3.5",
"typescript": "^5.4.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"
]
}