openpetswithchatandmcp/packages/cursor/package.json
OpenPets Dev 6ab3bb64d8 feat(rebrand): rename OpenPets to FamiliarOS and pets to familiars
- 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.
2026-06-17 01:42:08 +00:00

35 lines
737 B
JSON

{
"name": "@familiaros/cursor",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alvinunreal/familiaros.git",
"directory": "packages/cursor"
},
"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"
}
},
"scripts": {
"test": "node dist/check-cursor.js",
"check": "pnpm typecheck && pnpm build && pnpm test",
"typecheck": "tsc --noEmit",
"build": "tsc"
},
"devDependencies": {
"@types/node": "^25.6.2",
"typescript": "^6.0.3"
}
}