├── .deepsource.toml ├── .editorconfig ├── .gitignore ├── .npmignore ├── .prettierrc ├── .watchmanconfig ├── LICENSE ├── README.md ├── babel.config.js ├── client ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src │ └── index.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── screenshot.jpg ├── src ├── __tests__ │ └── test.spec.tsx └── index.tsx ├── tsconfig.json └── yarn.lock /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .history 3 | dist/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/.prettierrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/babel.config.js -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | lib 4 | .history 5 | -------------------------------------------------------------------------------- /client/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | src 4 | .history 5 | -------------------------------------------------------------------------------- /client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/client/LICENSE -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/client/src/index.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /src/__tests__/test.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/src/__tests__/test.spec.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylvanaar/flipper-plugin-bridgespy/HEAD/yarn.lock --------------------------------------------------------------------------------