-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.15 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
{
"name": "@fallom/openui",
"version": "1.2.1",
"description": "Visual canvas UI for managing AI coding agents locally",
"author": "Fallom AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Fallomai/openui.git"
},
"bugs": {
"url": "https://github.com/Fallomai/openui/issues"
},
"homepage": "https://github.com/Fallomai/openui#readme",
"keywords": [
"ai",
"coding-agent",
"claude-code",
"opencode",
"terminal",
"canvas",
"ui"
],
"type": "module",
"bin": {
"openui": "./bin/openui.ts"
},
"files": [
"bin/",
"server/",
"client/dist/",
"README.md"
],
"scripts": {
"start": "bun run server/index.ts",
"dev": "concurrently \"bun run --watch server/index.ts\" \"bun run --cwd client dev\"",
"build": "bun run --cwd client build",
"prepublishOnly": "bun run build",
"install:client": "cd client && bun install"
},
"dependencies": {
"bun-pty": "^0.4.8",
"hono": "^4.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}