repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| import { defineConfig } from "tsup"; |
| #2 |
| #3 | const external = [ |
| #4 | "openai", |
| #5 | "@anthropic-ai/sdk", |
| #6 | "groq-sdk", |
| #7 | "uuid", |
| #8 | "pg", |
| #9 | "zod", |
| #10 | "better-sqlite3", |
| #11 | "@qdrant/js-client-rest", |
| #12 | "redis", |
| #13 | ]; |
| #14 |
| #15 | export default defineConfig([ |
| #16 | { |
| #17 | entry: ["src/client/index.ts"], |
| #18 | format: ["cjs", "esm"], |
| #19 | dts: true, |
| #20 | sourcemap: true, |
| #21 | external, |
| #22 | }, |
| #23 | { |
| #24 | entry: ["src/oss/src/index.ts"], |
| #25 | outDir: "dist/oss", |
| #26 | format: ["cjs", "esm"], |
| #27 | dts: true, |
| #28 | sourcemap: true, |
| #29 | external, |
| #30 | }, |
| #31 | ]); |
| #32 |