Skip to content

Commit 6f1cd45

Browse files
committed
Use bun workspaces
1 parent 5494fae commit 6f1cd45

File tree

15 files changed

+38
-30
lines changed

15 files changed

+38
-30
lines changed

.reuse/dep5

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ Files: .gitignore flake.lock
88
Copyright: 2024 LiveKit, Inc.
99
License: Apache-2.0
1010

11-
# node project files
11+
# global project files
1212
Files: package.json tsconfig.json bun.lockb .prettierrc eslint.config.js
1313
Copyright: 2024 LiveKit, Inc.
1414
License: Apache-2.0
15+
16+
# agents project files
17+
Files: agents/package.json
18+
Copyright: 2024 LiveKit, Inc.
19+
License: Apache-2.0

agents/package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "@livekit/agents",
3+
"version": "0.1.0",
4+
"description": "LiveKit Node Agents",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
7+
"author": "aoife cassidy <[email protected]>",
8+
"type": "module",
9+
"scripts": {
10+
"build": "tsc",
11+
"lint": "eslint src"
12+
},
13+
"bin": {
14+
"agents": "dist/cli.js"
15+
},
16+
"devDependencies": {
17+
"@types/bun": "latest",
18+
"eslint": "^8.57.0",
19+
"eslint-config-prettier": "^9.1.0",
20+
"eslint-plugin-prettier": "^5.1.3",
21+
"typescript-eslint": "^7.4.0"
22+
},
23+
"peerDependencies": {
24+
"typescript": "^5.0.0"
25+
},
26+
"dependencies": {
27+
"commander": "^12.0.0",
28+
"@livekit/protocol": "^1.12.0"
29+
}
30+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)