Use peezy.tech npm scope
This commit is contained in:
parent
46878f0e15
commit
46180a2865
24 changed files with 73 additions and 73 deletions
|
|
@ -14,7 +14,7 @@
|
|||
"test": "bun test test/*.test.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@peezy-tech/codex-flows": "workspace:*"
|
||||
"@peezy.tech/codex-flows": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "catalog:",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bun
|
||||
import { CodexAppServerClient } from "@peezy-tech/codex-flows";
|
||||
import { CodexAppServerClient } from "@peezy.tech/codex-flows";
|
||||
|
||||
import { APP_SERVER_ACTIONS } from "./actions.ts";
|
||||
import { DEFAULT_WS_URL, parseArgs } from "./args.ts";
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@
|
|||
"skipLibCheck": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@peezy-tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy-tech/codex-flows/*": ["../../packages/codex-client/src/*"]
|
||||
"@peezy.tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy.tech/codex-flows/*": ["../../packages/codex-client/src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src", "test"]
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
"test": "bun test test/*.test.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@peezy-tech/codex-flows": "workspace:*",
|
||||
"@peezy.tech/codex-flows": "workspace:*",
|
||||
"discord.js": "catalog:"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import os from "node:os";
|
||||
import path from "node:path";
|
||||
|
||||
import type { JsonRpcNotification, JsonRpcRequest } from "@peezy-tech/codex-flows/rpc";
|
||||
import type { v2 } from "@peezy-tech/codex-flows/generated";
|
||||
import type { JsonRpcNotification, JsonRpcRequest } from "@peezy.tech/codex-flows/rpc";
|
||||
import type { v2 } from "@peezy.tech/codex-flows/generated";
|
||||
|
||||
import type { DiscordConsoleOutput } from "./console-output.ts";
|
||||
import { DiscordThreadRunner, MessageDeduplicator } from "./runner.ts";
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import type {
|
|||
ReasoningEffort,
|
||||
ReasoningSummary,
|
||||
v2,
|
||||
} from "@peezy-tech/codex-flows/generated";
|
||||
} from "@peezy.tech/codex-flows/generated";
|
||||
|
||||
import type {
|
||||
DiscordBridgeConfig,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
import {
|
||||
CodexAppServerClient,
|
||||
CodexStdioTransport,
|
||||
} from "@peezy-tech/codex-flows";
|
||||
} from "@peezy.tech/codex-flows";
|
||||
|
||||
import { DiscordCodexBridge } from "./bridge.ts";
|
||||
import { createDiscordConsoleOutput } from "./console-output.ts";
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import type { JsonRpcNotification } from "@peezy-tech/codex-flows/rpc";
|
||||
import type { v2 } from "@peezy-tech/codex-flows/generated";
|
||||
import type { JsonRpcNotification } from "@peezy.tech/codex-flows/rpc";
|
||||
import type { v2 } from "@peezy.tech/codex-flows/generated";
|
||||
|
||||
import type {
|
||||
DiscordConsoleMessageKind,
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@ import type {
|
|||
ReasoningEffort,
|
||||
ReasoningSummary,
|
||||
v2,
|
||||
} from "@peezy-tech/codex-flows/generated";
|
||||
import type { JsonRpcNotification, JsonRpcRequest } from "@peezy-tech/codex-flows/rpc";
|
||||
} from "@peezy.tech/codex-flows/generated";
|
||||
import type { JsonRpcNotification, JsonRpcRequest } from "@peezy.tech/codex-flows/rpc";
|
||||
import type { DiscordBridgeLogLevelSetting } from "./logger.ts";
|
||||
|
||||
export type DiscordBridgeConfig = {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import os from "node:os";
|
||||
import path from "node:path";
|
||||
import { describe, expect, test } from "bun:test";
|
||||
import type { JsonRpcNotification, JsonRpcRequest } from "@peezy-tech/codex-flows/rpc";
|
||||
import type { v2 } from "@peezy-tech/codex-flows/generated";
|
||||
import type { JsonRpcNotification, JsonRpcRequest } from "@peezy.tech/codex-flows/rpc";
|
||||
import type { v2 } from "@peezy.tech/codex-flows/generated";
|
||||
|
||||
import { DiscordCodexBridge, parseThreadStartIntent } from "../src/bridge.ts";
|
||||
import type {
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@
|
|||
"types": ["node", "bun"],
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@peezy-tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy-tech/codex-flows/*": ["../../packages/codex-client/src/*"]
|
||||
"@peezy.tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy.tech/codex-flows/*": ["../../packages/codex-client/src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src", "test"]
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@workspace/ui": "workspace:*",
|
||||
"@peezy-tech/codex-flows": "workspace:*",
|
||||
"@peezy.tech/codex-flows": "workspace:*",
|
||||
"lucide-react": "catalog:",
|
||||
"react": "catalog:",
|
||||
"react-dom": "catalog:"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ import {
|
|||
type JsonRpcNotification,
|
||||
type JsonRpcRequest,
|
||||
type v2,
|
||||
} from "@peezy-tech/codex-flows/browser";
|
||||
} from "@peezy.tech/codex-flows/browser";
|
||||
|
||||
import { ThemeProvider } from "./components/theme-provider.tsx";
|
||||
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"@peezy-tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy-tech/codex-flows/*": ["../../packages/codex-client/src/*"],
|
||||
"@peezy.tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy.tech/codex-flows/*": ["../../packages/codex-client/src/*"],
|
||||
"@workspace/ui/*": ["../../packages/ui/src/*"]
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@
|
|||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"@peezy-tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy-tech/codex-flows/*": ["../../packages/codex-client/src/*"],
|
||||
"@peezy.tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
||||
"@peezy.tech/codex-flows/*": ["../../packages/codex-client/src/*"],
|
||||
"@workspace/ui/*": ["../../packages/ui/src/*"]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue