-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfreestyle-sync.config.ts
More file actions
46 lines (45 loc) · 1.81 KB
/
Copy pathfreestyle-sync.config.ts
File metadata and controls
46 lines (45 loc) · 1.81 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
import { claudeAgentPlugin } from "@freestyle-sync/agent-claude";
import { codexAgentPlugin } from "@freestyle-sync/agent-codex";
import { copilotAgentPlugin } from "@freestyle-sync/agent-copilot";
import { astroPlugin } from "@freestyle-sync/astro";
import { awsAuthPlugin } from "@freestyle-sync/auth-aws";
import { azureAuthPlugin } from "@freestyle-sync/auth-azure";
import { dockerAuthPlugin } from "@freestyle-sync/auth-docker";
import { envAuthPlugin } from "@freestyle-sync/auth-env";
import { gcloudAuthPlugin } from "@freestyle-sync/auth-gcloud";
import { gitAuthPlugin } from "@freestyle-sync/auth-git";
import { githubCliAuthPlugin } from "@freestyle-sync/auth-github-cli";
import { npmAuthPlugin } from "@freestyle-sync/auth-npm";
import { sshAuthPlugin } from "@freestyle-sync/auth-ssh";
import { wranglerAuthPlugin } from "@freestyle-sync/auth-wrangler";
import { yarnAuthPlugin } from "@freestyle-sync/auth-yarn";
import { nextjsPlugin } from "@freestyle-sync/nextjs";
import { nodeNpmPlugin } from "@freestyle-sync/node-npm";
import { rustPlugin } from "@freestyle-sync/rust";
import { shellHistoryPlugin } from "@freestyle-sync/shell-history";
import { vitePlugin } from "@freestyle-sync/vite";
import { defineConfig } from "./src/plugin-api.ts";
export default defineConfig({
plugins: [
envAuthPlugin(),
gitAuthPlugin(),
sshAuthPlugin(),
githubCliAuthPlugin(),
npmAuthPlugin(),
yarnAuthPlugin(),
wranglerAuthPlugin(),
dockerAuthPlugin(),
awsAuthPlugin(),
azureAuthPlugin(),
gcloudAuthPlugin(),
nodeNpmPlugin(),
astroPlugin(),
nextjsPlugin(),
vitePlugin(),
rustPlugin(),
claudeAgentPlugin(),
codexAgentPlugin(),
copilotAgentPlugin(),
shellHistoryPlugin(),
],
});