Skip to content

Commit 62b4d0b

Browse files
committed
Move to appkit-agent
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
1 parent 0dedd48 commit 62b4d0b

24 files changed

+793
-2890
lines changed

.github/workflows/chat-ui.yml

Lines changed: 0 additions & 131 deletions
This file was deleted.

.github/workflows/release-chat-ui.yml

Lines changed: 0 additions & 115 deletions
This file was deleted.

integrations/appkit-agent/package.json

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,18 @@
1616
"types": "./dist/index.d.cts",
1717
"default": "./dist/index.cjs"
1818
}
19-
}
19+
},
20+
"./chat-ui/simple": {
21+
"import": {
22+
"types": "./dist/chat-ui/simple.d.mts",
23+
"default": "./dist/chat-ui/simple.mjs"
24+
},
25+
"require": {
26+
"types": "./dist/chat-ui/simple.d.cts",
27+
"default": "./dist/chat-ui/simple.cjs"
28+
}
29+
},
30+
"./chat-ui/simple/styles.css": "./dist/chat-ui/styles.css"
2031
},
2132
"files": [
2233
"dist",
@@ -25,7 +36,7 @@
2536
"NOTICE"
2637
],
2738
"scripts": {
28-
"build": "tsdown",
39+
"build": "rm -rf dist && tsdown && tailwindcss -c tailwind.chat-ui.config.js -i src/chat-ui/simple/styles.css -o dist/chat-ui/styles.css --minify",
2940
"dev": "tsdown --watch",
3041
"clean": "rm -rf dist",
3142
"test": "vitest run",
@@ -44,7 +55,9 @@
4455
"@langchain/core": ">=1.0.0",
4556
"@langchain/langgraph": ">=1.0.0",
4657
"@langchain/mcp-adapters": ">=1.0.0",
47-
"express": ">=4.0.0"
58+
"express": ">=4.0.0",
59+
"react": "^18.0.0 || ^19.0.0",
60+
"react-dom": "^18.0.0 || ^19.0.0"
4861
},
4962
"peerDependenciesMeta": {
5063
"@databricks/langchainjs": {
@@ -58,17 +71,32 @@
5871
},
5972
"@langchain/mcp-adapters": {
6073
"optional": true
74+
},
75+
"react": {
76+
"optional": true
77+
},
78+
"react-dom": {
79+
"optional": true
6180
}
6281
},
6382
"dependencies": {
83+
"@radix-ui/react-slot": "^1.2.4",
84+
"class-variance-authority": "^0.7.1",
85+
"clsx": "^2.1.1",
86+
"tailwind-merge": "^3.4.0",
6487
"zod": "^4.3.5"
6588
},
6689
"devDependencies": {
6790
"@databricks/appkit": "^0.21.0",
6891
"@langchain/core": "^1.1.8",
6992
"@types/express": "^4.17.25",
7093
"@types/node": "^22.0.0",
94+
"@types/react": "^19.0.0",
95+
"@types/react-dom": "^19.0.0",
7196
"prettier": "^3.0.0",
97+
"react": "^19.0.0",
98+
"react-dom": "^19.0.0",
99+
"tailwindcss": "^3.4.0",
72100
"tsdown": "^0.9.0",
73101
"typescript": "^5.4.0",
74102
"vitest": "^4.0.18"
@@ -103,6 +131,9 @@
103131
"esbuild",
104132
"protobufjs",
105133
"rolldown"
106-
]
134+
],
135+
"overrides": {
136+
"vite": "8.0.0"
137+
}
107138
}
108139
}

0 commit comments

Comments
 (0)