-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.56 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
{
"name": "@hubui/client",
"version": "0.1.0",
"description": "HubUI Client SDK - Connect to AI voice and text agents",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**/*.cjs",
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"hubui",
"ai",
"voice",
"chat",
"sdk",
"realtime",
"agents"
],
"author": "HubUI",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/HubUI-AI/hubui-client.git"
},
"homepage": "https://hubui.ai",
"bugs": {
"url": "https://github.com/HubUI-AI/hubui-client/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.9.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"dependencies": {
"livekit-client": "^2.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}