-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaido.config.ts
More file actions
47 lines (46 loc) · 1.06 KB
/
Copy pathcaido.config.ts
File metadata and controls
47 lines (46 loc) · 1.06 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
import { defineConfig } from "@caido-community/dev";
import path from "path";
const id = "shadowshell";
export default defineConfig({
id,
name: "ShadowShell",
description:
"Multi-terminal plugin for Caido with AI presets and instant Cmd+J access. Split panes, multiple tabs, and one-click launch for Claude, Gemini, Codex and more.",
version: "0.1.0",
author: {
name: "hahwul",
email: "hahwul@gmail.com",
url: "https://www.hahwul.com",
},
plugins: [
{
kind: "backend",
id: "backend",
root: "packages/backend",
},
{
kind: "frontend",
id: "frontend",
root: "packages/frontend",
backend: {
id: "backend",
},
vite: {
build: {
assetsInlineLimit: 0,
rollupOptions: {
external: ["@caido/frontend-sdk"],
},
},
resolve: {
alias: [
{
find: "@",
replacement: path.resolve(__dirname, "packages/frontend/src"),
},
],
},
},
},
],
});