├── .changeset ├── README.md └── config.json ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── examples └── example-react │ ├── .eslintrc.js │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── main.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── package.json ├── packages ├── eslint-config-custom │ ├── index.js │ └── package.json └── y-presence │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── package.json │ ├── src │ ├── index.ts │ ├── useSelf.ts │ └── useUsers.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tsconfig.json └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/README.md -------------------------------------------------------------------------------- /examples/example-react/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: ["custom"], 4 | }; 5 | -------------------------------------------------------------------------------- /examples/example-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/.gitignore -------------------------------------------------------------------------------- /examples/example-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/index.html -------------------------------------------------------------------------------- /examples/example-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/package.json -------------------------------------------------------------------------------- /examples/example-react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/public/vite.svg -------------------------------------------------------------------------------- /examples/example-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/src/App.tsx -------------------------------------------------------------------------------- /examples/example-react/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/src/assets/react.svg -------------------------------------------------------------------------------- /examples/example-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/src/main.tsx -------------------------------------------------------------------------------- /examples/example-react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/example-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/tsconfig.json -------------------------------------------------------------------------------- /examples/example-react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/tsconfig.node.json -------------------------------------------------------------------------------- /examples/example-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/examples/example-react/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/package.json -------------------------------------------------------------------------------- /packages/eslint-config-custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/eslint-config-custom/index.js -------------------------------------------------------------------------------- /packages/eslint-config-custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/eslint-config-custom/package.json -------------------------------------------------------------------------------- /packages/y-presence/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: ["custom"], 4 | }; 5 | -------------------------------------------------------------------------------- /packages/y-presence/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/CHANGELOG.md -------------------------------------------------------------------------------- /packages/y-presence/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/LICENSE.md -------------------------------------------------------------------------------- /packages/y-presence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/README.md -------------------------------------------------------------------------------- /packages/y-presence/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/package.json -------------------------------------------------------------------------------- /packages/y-presence/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/src/index.ts -------------------------------------------------------------------------------- /packages/y-presence/src/useSelf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/src/useSelf.ts -------------------------------------------------------------------------------- /packages/y-presence/src/useUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/src/useUsers.ts -------------------------------------------------------------------------------- /packages/y-presence/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/tsconfig.json -------------------------------------------------------------------------------- /packages/y-presence/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/packages/y-presence/tsup.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimeshnayaju/y-presence/HEAD/turbo.json --------------------------------------------------------------------------------