- Rename all user-facing and technical identifiers from OpenPets/Pet to FamiliarOS/Familiar. - Rename packages from @open-pets/* to @familiaros/*; rename install-pet/pet-format packages. - Rename plugin IDs and directories from openpets.* to familiaros.*. - Rename IPC namespace from openpets:* to familiaros:* and state filenames from openpets-* to familiaros-* with legacy migration. - Rename source files (pet-window, built-in-pet, default-pet-controller, etc.) to familiar equivalents. - Update locales (en, es-419, ja, ko, pt-BR, zh-Hans, zh-Hant) and tray/pet context menu strings. - Add Familiar naming feature: preference, settings input, tray menu display. - Update assets and packaging config; all desktop tests pass.
44 lines
1 KiB
JSON
44 lines
1 KiB
JSON
{
|
|
"name": "@familiaros/opencode",
|
|
"version": "3.0.0",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/alvinunreal/familiaros.git",
|
|
"directory": "packages/opencode"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./server": {
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "node dist/check-opencode-foundation.js && node dist/check-opencode-plugin.js",
|
|
"check": "pnpm typecheck && pnpm build && pnpm test",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"@familiaros/agent-events": "workspace:*",
|
|
"@familiaros/client": "workspace:*",
|
|
"jsonc-parser": "^3.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.2",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|