|
1 | 1 | { |
2 | | - "name": "@livekit/agents-plugin-baseten", |
3 | | - "version": "1.0.30", |
4 | | - "description": "Baseten plugin for LiveKit Node Agents", |
5 | | - "private": true, |
6 | | - "main": "dist/index.js", |
7 | | - "types": "dist/index.d.ts", |
8 | | - "type": "module", |
9 | | - "author": "LiveKit", |
10 | | - "repository": "git@github.com:livekit/agents-js.git", |
11 | | - "license": "Apache-2.0", |
12 | | - "files": [ |
13 | | - "dist", |
14 | | - "src", |
15 | | - "README.md" |
16 | | - ], |
17 | | - "scripts": { |
18 | | - "build": "tsc", |
19 | | - "dev": "tsc --watch", |
20 | | - "clean": "rm -rf dist", |
21 | | - "typecheck": "tsc --noEmit", |
22 | | - "lint": "eslint \"src/**/*.ts\"", |
23 | | - "lint:fix": "eslint --fix \"src/**/*.ts\"" |
| 2 | + "name": "@livekit/agents-plugin-baseten", |
| 3 | + "version": "1.0.30", |
| 4 | + "description": "Baseten plugin for LiveKit Node Agents", |
| 5 | + "main": "dist/index.js", |
| 6 | + "require": "dist/index.cjs", |
| 7 | + "types": "dist/index.d.ts", |
| 8 | + "exports": { |
| 9 | + "import": { |
| 10 | + "types": "./dist/index.d.ts", |
| 11 | + "default": "./dist/index.js" |
24 | 12 | }, |
25 | | - "keywords": [ |
26 | | - "livekit", |
27 | | - "agents", |
28 | | - "baseten", |
29 | | - "llm", |
30 | | - "stt", |
31 | | - "tts", |
32 | | - "voice-ai" |
33 | | - ], |
34 | | - "dependencies": { |
35 | | - "dotenv": "^17.2.3", |
36 | | - "openai": "^6.8.1", |
37 | | - "ws": "^8.14.2" |
38 | | - }, |
39 | | - "devDependencies": { |
40 | | - "@livekit/agents": "workspace:*", |
41 | | - "@livekit/agents-plugin-silero": "workspace:*", |
42 | | - "@livekit/agents-plugins-test": "workspace:*", |
43 | | - "@livekit/rtc-node": "^0.13.22", |
44 | | - "@types/node": "^22.18.11", |
45 | | - "@types/ws": "^8.5.8", |
46 | | - "tsx": "^4.7.0", |
47 | | - "typescript": "^5.9.3" |
48 | | - }, |
49 | | - "peerDependencies": { |
50 | | - "@livekit/agents": "workspace:*", |
51 | | - "@livekit/rtc-node": "^0.13.22" |
| 13 | + "require": { |
| 14 | + "types": "./dist/index.d.cts", |
| 15 | + "default": "./dist/index.cjs" |
52 | 16 | } |
| 17 | + }, |
| 18 | + "author": "LiveKit", |
| 19 | + "type": "module", |
| 20 | + "repository": "git@github.com:livekit/agents-js.git", |
| 21 | + "license": "Apache-2.0", |
| 22 | + "files": [ |
| 23 | + "dist", |
| 24 | + "src", |
| 25 | + "README.md" |
| 26 | + ], |
| 27 | + "scripts": { |
| 28 | + "build": "tsup --onSuccess \"pnpm build:types\"", |
| 29 | + "build:types": "tsc --declaration --emitDeclarationOnly && node ../../scripts/copyDeclarationOutput.js", |
| 30 | + "clean": "rm -rf dist", |
| 31 | + "clean:build": "pnpm clean && pnpm build", |
| 32 | + "dev": "tsc --watch", |
| 33 | + "typecheck": "tsc --noEmit", |
| 34 | + "lint": "eslint \"src/**/*.ts\"", |
| 35 | + "lint:fix": "eslint --fix \"src/**/*.ts\"", |
| 36 | + "api:check": "api-extractor run --typescript-compiler-folder ../../node_modules/typescript", |
| 37 | + "api:update": "api-extractor run --local --typescript-compiler-folder ../../node_modules/typescript --verbose" |
| 38 | + }, |
| 39 | + "keywords": [ |
| 40 | + "livekit", |
| 41 | + "agents", |
| 42 | + "baseten", |
| 43 | + "llm", |
| 44 | + "stt", |
| 45 | + "tts", |
| 46 | + "voice-ai" |
| 47 | + ], |
| 48 | + "devDependencies": { |
| 49 | + "@livekit/agents": "workspace:*", |
| 50 | + "@livekit/agents-plugin-silero": "workspace:*", |
| 51 | + "@livekit/agents-plugins-test": "workspace:*", |
| 52 | + "@livekit/rtc-node": "^0.13.22", |
| 53 | + "@microsoft/api-extractor": "^7.35.0", |
| 54 | + "@types/node": "^22.18.11", |
| 55 | + "@types/ws": "^8.5.8", |
| 56 | + "tsx": "^4.7.0", |
| 57 | + "typescript": "^5.9.3" |
| 58 | + }, |
| 59 | + "dependencies": { |
| 60 | + "dotenv": "^17.2.3", |
| 61 | + "openai": "^6.8.1", |
| 62 | + "ws": "^8.14.2" |
| 63 | + }, |
| 64 | + "peerDependencies": { |
| 65 | + "@livekit/agents": "workspace:*", |
| 66 | + "@livekit/rtc-node": "^0.13.22" |
| 67 | + } |
53 | 68 | } |
0 commit comments