├── .gitignore ├── README.md ├── dist └── plugin.js ├── manifest.json ├── package.json ├── src ├── plugin.js ├── renderer.js ├── server.js ├── ui.html └── util.js └── test └── sketch.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/README.md -------------------------------------------------------------------------------- /dist/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/dist/plugin.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/package.json -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/src/plugin.js -------------------------------------------------------------------------------- /src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/src/renderer.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/src/server.js -------------------------------------------------------------------------------- /src/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/src/ui.html -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/src/util.js -------------------------------------------------------------------------------- /test/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/figma-plugin-websockets/HEAD/test/sketch.js --------------------------------------------------------------------------------