Use peezy.tech npm scope

This commit is contained in:
matamune 2026-05-12 15:34:46 +00:00
parent 46878f0e15
commit 46180a2865
24 changed files with 73 additions and 73 deletions

View file

@ -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": {

View file

@ -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";

View file

@ -5,7 +5,7 @@ import type {
ReasoningEffort,
ReasoningSummary,
v2,
} from "@peezy-tech/codex-flows/generated";
} from "@peezy.tech/codex-flows/generated";
import type {
DiscordBridgeConfig,

View file

@ -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";

View file

@ -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,

View file

@ -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 = {

View file

@ -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 {

View file

@ -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"]