-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 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
{
"name": "@humeai/voice-embed",
"version": "0.2.0-beta.4",
"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"
},
"files": [
"package.json",
"dist"
],
"scripts": {
"test": "vitest",
"test:watch": "vitest --watch",
"build": "pnpm lint && tsup",
"dev": "tsup --watch",
"lint": "eslint ./src/",
"pack": "npm pack"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@humeai/eslint-config": "workspace:*",
"@humeai/typescript-config": "workspace:*",
"@types/node": "^20.11.30",
"jsdom": "^24.0.0",
"tsup": "^8.3.5",
"typescript": "^5.4.3",
"vitest": "^3.1.2"
},
"dependencies": {
"hume": "0.10.3",
"zod": "^3.22.4"
},
"browserslist": [
"last 2 Chrome versions, last 2 iOS major versions, Firefox ESR, not dead"
]
}