├── .eslintcache ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── applescript.sh ├── manifest.json ├── modd.conf ├── package.json ├── src ├── app.tsx ├── constants.ts ├── figma.d.ts ├── index.html ├── index.tsx └── sandbox.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.eslintcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/.eslintcache -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | dist 3 | node_modules 4 | src/figma.d.ts 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | lib/ 4 | .idea 5 | .eslintcache 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/README.md -------------------------------------------------------------------------------- /applescript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/applescript.sh -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/manifest.json -------------------------------------------------------------------------------- /modd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/modd.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/src/figma.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/sandbox.ts: -------------------------------------------------------------------------------- 1 | figma.showUI(__html__) 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinto/react-graphql-figma-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------