a7d5e683c7
Align version lookup, invalidation, and bun install with OpenCode's cache directory so updates target the loaded plugin location. Keep dependency declarations intact during invalidation so auto-update can reinstall instead of converging to uninstall.
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import * as path from "node:path"
|
|
import * as os from "node:os"
|
|
import { getOpenCodeCacheDir } from "../../shared/data-path"
|
|
import { getOpenCodeConfigDir } from "../../shared/opencode-config-dir"
|
|
|
|
export const PACKAGE_NAME = "oh-my-opencode"
|
|
export const NPM_REGISTRY_URL = `https://registry.npmjs.org/-/package/${PACKAGE_NAME}/dist-tags`
|
|
export const NPM_FETCH_TIMEOUT = 5000
|
|
|
|
export const CACHE_DIR = getOpenCodeCacheDir()
|
|
export const VERSION_FILE = path.join(CACHE_DIR, "version")
|
|
|
|
export function getWindowsAppdataDir(): string | null {
|
|
if (process.platform !== "win32") return null
|
|
return process.env.APPDATA ?? path.join(os.homedir(), "AppData", "Roaming")
|
|
}
|
|
|
|
export const USER_CONFIG_DIR = getOpenCodeConfigDir({ binary: "opencode" })
|
|
export const USER_OPENCODE_CONFIG = path.join(USER_CONFIG_DIR, "opencode.json")
|
|
export const USER_OPENCODE_CONFIG_JSONC = path.join(USER_CONFIG_DIR, "opencode.jsonc")
|
|
|
|
export const INSTALLED_PACKAGE_JSON = path.join(
|
|
CACHE_DIR,
|
|
"node_modules",
|
|
PACKAGE_NAME,
|
|
"package.json"
|
|
)
|