├── .gitignore ├── LICENSE ├── README.md ├── manifest.json ├── package.json ├── scripts ├── README.md ├── build.js ├── dev.js └── util.js ├── src ├── plugin │ └── run.ts └── ui │ ├── index.css │ ├── main.tsx │ ├── ui.css │ ├── ui.html │ └── ui.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/package.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/scripts/dev.js -------------------------------------------------------------------------------- /scripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/scripts/util.js -------------------------------------------------------------------------------- /src/plugin/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/src/plugin/run.ts -------------------------------------------------------------------------------- /src/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/src/ui/index.css -------------------------------------------------------------------------------- /src/ui/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/src/ui/main.tsx -------------------------------------------------------------------------------- /src/ui/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/src/ui/ui.css -------------------------------------------------------------------------------- /src/ui/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/src/ui/ui.html -------------------------------------------------------------------------------- /src/ui/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/src/ui/ui.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senicko/figma-ui-plugin-template/HEAD/tsconfig.json --------------------------------------------------------------------------------