├── .gitattributes ├── .gitignore ├── package.json ├── readme.md ├── splitbee-core ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src │ ├── api.ts │ └── index.ts ├── tsconfig.json └── yarn.lock ├── splitbee-node ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src │ └── index.ts ├── tsconfig.json └── yarn.lock ├── splitbee-react-native ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src │ ├── device │ │ ├── expo.ts │ │ ├── index.ts │ │ └── native.ts │ ├── index.ts │ └── timer.ts ├── tsconfig.json └── yarn.lock ├── splitbee-web ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example │ ├── .gitignore │ ├── favicon.svg │ ├── index.html │ ├── package.json │ ├── src │ │ ├── main.ts │ │ ├── style.css │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── package.json ├── src │ ├── index.ts │ └── types.ts ├── tsconfig.json └── yarn.lock └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/readme.md -------------------------------------------------------------------------------- /splitbee-core/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /splitbee-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-core/LICENSE -------------------------------------------------------------------------------- /splitbee-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-core/README.md -------------------------------------------------------------------------------- /splitbee-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-core/package.json -------------------------------------------------------------------------------- /splitbee-core/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-core/src/api.ts -------------------------------------------------------------------------------- /splitbee-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-core/src/index.ts -------------------------------------------------------------------------------- /splitbee-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-core/tsconfig.json -------------------------------------------------------------------------------- /splitbee-core/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-core/yarn.lock -------------------------------------------------------------------------------- /splitbee-node/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /splitbee-node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-node/LICENSE -------------------------------------------------------------------------------- /splitbee-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-node/README.md -------------------------------------------------------------------------------- /splitbee-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-node/package.json -------------------------------------------------------------------------------- /splitbee-node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-node/src/index.ts -------------------------------------------------------------------------------- /splitbee-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-node/tsconfig.json -------------------------------------------------------------------------------- /splitbee-node/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-node/yarn.lock -------------------------------------------------------------------------------- /splitbee-react-native/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /splitbee-react-native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/LICENSE -------------------------------------------------------------------------------- /splitbee-react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/README.md -------------------------------------------------------------------------------- /splitbee-react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/package.json -------------------------------------------------------------------------------- /splitbee-react-native/src/device/expo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/src/device/expo.ts -------------------------------------------------------------------------------- /splitbee-react-native/src/device/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/src/device/index.ts -------------------------------------------------------------------------------- /splitbee-react-native/src/device/native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/src/device/native.ts -------------------------------------------------------------------------------- /splitbee-react-native/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/src/index.ts -------------------------------------------------------------------------------- /splitbee-react-native/src/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/src/timer.ts -------------------------------------------------------------------------------- /splitbee-react-native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/tsconfig.json -------------------------------------------------------------------------------- /splitbee-react-native/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-react-native/yarn.lock -------------------------------------------------------------------------------- /splitbee-web/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /splitbee-web/.npmignore: -------------------------------------------------------------------------------- 1 | example -------------------------------------------------------------------------------- /splitbee-web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/LICENSE -------------------------------------------------------------------------------- /splitbee-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/README.md -------------------------------------------------------------------------------- /splitbee-web/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/.gitignore -------------------------------------------------------------------------------- /splitbee-web/example/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/favicon.svg -------------------------------------------------------------------------------- /splitbee-web/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/index.html -------------------------------------------------------------------------------- /splitbee-web/example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/package.json -------------------------------------------------------------------------------- /splitbee-web/example/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/src/main.ts -------------------------------------------------------------------------------- /splitbee-web/example/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/src/style.css -------------------------------------------------------------------------------- /splitbee-web/example/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /splitbee-web/example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/tsconfig.json -------------------------------------------------------------------------------- /splitbee-web/example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/example/yarn.lock -------------------------------------------------------------------------------- /splitbee-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/package.json -------------------------------------------------------------------------------- /splitbee-web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/src/index.ts -------------------------------------------------------------------------------- /splitbee-web/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/src/types.ts -------------------------------------------------------------------------------- /splitbee-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/tsconfig.json -------------------------------------------------------------------------------- /splitbee-web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/splitbee-web/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splitbee/splitbee-js/HEAD/yarn.lock --------------------------------------------------------------------------------