├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc.yml ├── LICENSE ├── README.md ├── declaration.d.ts ├── figma.d.ts ├── json-test-files ├── different-image-formats.json ├── null.json ├── users-nested.json ├── workers-json+image-short.json └── workers-json+image.json ├── manifest.json ├── package.json ├── readme-images ├── cover.webp └── plugin-preview.jpg ├── src ├── app │ ├── assets │ │ └── plugin-logo.webp │ ├── components │ │ ├── App.tsx │ │ ├── contexts │ │ │ ├── OptionsContext.tsx │ │ │ ├── ViewContext.tsx │ │ │ └── index.tsx │ │ ├── elements │ │ │ ├── Button │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ElementCaption │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Icon │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Input │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Link │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Resizer │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── Switcher │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ │ ├── sections │ │ │ ├── SectionWrapper │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ │ └── views │ │ │ ├── LaunchView │ │ │ ├── index.tsx │ │ │ ├── sections │ │ │ │ └── Head │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ └── styles.module.scss │ │ │ ├── OperationsView │ │ │ ├── index.tsx │ │ │ ├── sections │ │ │ │ ├── JSONbuttons │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── RandomSwitcher │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── SelectRange │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── SkipLayers │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ └── index.tsx │ │ │ └── styles.module.scss │ │ │ └── index.tsx │ ├── index.html │ ├── index.tsx │ ├── styles │ │ ├── _fonts.scss │ │ ├── _tokens.scss │ │ └── ui.scss │ └── utils │ │ ├── clearNullValues.ts │ │ ├── execGetClipboard.ts │ │ ├── fetchFromURL.ts │ │ ├── fetchImagefromURL.ts │ │ ├── filterObjRange.ts │ │ ├── flattenObj.ts │ │ ├── groupFlattenedObj.ts │ │ ├── index.tsx │ │ ├── isImageString.ts │ │ ├── isPlainObject.ts │ │ ├── msgTypes.ts │ │ ├── postFigmaMessage.ts │ │ ├── proxyServer.ts │ │ ├── showMsg.ts │ │ └── validateRangeValue.ts ├── data │ ├── pluginFrameSize.ts │ └── skipSign.ts └── plugin │ ├── controller.ts │ └── utils │ ├── addSign.ts │ ├── figmaNotify.ts │ ├── index.ts │ ├── populateByName.ts │ ├── removeSign.ts │ └── shuffleArray.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | settings.json 5 | yarn-error.log -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/README.md -------------------------------------------------------------------------------- /declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/declaration.d.ts -------------------------------------------------------------------------------- /figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/figma.d.ts -------------------------------------------------------------------------------- /json-test-files/different-image-formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/json-test-files/different-image-formats.json -------------------------------------------------------------------------------- /json-test-files/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/json-test-files/null.json -------------------------------------------------------------------------------- /json-test-files/users-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/json-test-files/users-nested.json -------------------------------------------------------------------------------- /json-test-files/workers-json+image-short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/json-test-files/workers-json+image-short.json -------------------------------------------------------------------------------- /json-test-files/workers-json+image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/json-test-files/workers-json+image.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/package.json -------------------------------------------------------------------------------- /readme-images/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/readme-images/cover.webp -------------------------------------------------------------------------------- /readme-images/plugin-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/readme-images/plugin-preview.jpg -------------------------------------------------------------------------------- /src/app/assets/plugin-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/assets/plugin-logo.webp -------------------------------------------------------------------------------- /src/app/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/App.tsx -------------------------------------------------------------------------------- /src/app/components/contexts/OptionsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/contexts/OptionsContext.tsx -------------------------------------------------------------------------------- /src/app/components/contexts/ViewContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/contexts/ViewContext.tsx -------------------------------------------------------------------------------- /src/app/components/contexts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/contexts/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Button/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/Button/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Button/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/elements/ElementCaption/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/ElementCaption/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/ElementCaption/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/ElementCaption/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/elements/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Icon/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/Icon/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Icon/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/elements/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Input/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/Input/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Input/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/elements/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Link/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/Link/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Link/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/elements/Resizer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Resizer/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/Resizer/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Resizer/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/elements/Switcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Switcher/index.tsx -------------------------------------------------------------------------------- /src/app/components/elements/Switcher/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/Switcher/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/elements/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/elements/index.tsx -------------------------------------------------------------------------------- /src/app/components/sections/SectionWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/sections/SectionWrapper/index.tsx -------------------------------------------------------------------------------- /src/app/components/sections/SectionWrapper/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/sections/SectionWrapper/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/sections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/sections/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/LaunchView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/LaunchView/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/LaunchView/sections/Head/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/LaunchView/sections/Head/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/LaunchView/sections/Head/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/LaunchView/sections/Head/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/views/LaunchView/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/LaunchView/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/JSONbuttons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/JSONbuttons/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/JSONbuttons/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/JSONbuttons/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/RandomSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/RandomSwitcher/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/RandomSwitcher/styles.module.scss: -------------------------------------------------------------------------------- 1 | .wrap { 2 | padding-bottom: var(--xl-space); 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/SelectRange/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/SelectRange/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/SelectRange/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/SelectRange/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/SkipLayers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/SkipLayers/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/SkipLayers/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/SkipLayers/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/sections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/sections/index.tsx -------------------------------------------------------------------------------- /src/app/components/views/OperationsView/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/OperationsView/styles.module.scss -------------------------------------------------------------------------------- /src/app/components/views/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/components/views/index.tsx -------------------------------------------------------------------------------- /src/app/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/index.tsx -------------------------------------------------------------------------------- /src/app/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/styles/_fonts.scss -------------------------------------------------------------------------------- /src/app/styles/_tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/styles/_tokens.scss -------------------------------------------------------------------------------- /src/app/styles/ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/styles/ui.scss -------------------------------------------------------------------------------- /src/app/utils/clearNullValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/clearNullValues.ts -------------------------------------------------------------------------------- /src/app/utils/execGetClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/execGetClipboard.ts -------------------------------------------------------------------------------- /src/app/utils/fetchFromURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/fetchFromURL.ts -------------------------------------------------------------------------------- /src/app/utils/fetchImagefromURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/fetchImagefromURL.ts -------------------------------------------------------------------------------- /src/app/utils/filterObjRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/filterObjRange.ts -------------------------------------------------------------------------------- /src/app/utils/flattenObj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/flattenObj.ts -------------------------------------------------------------------------------- /src/app/utils/groupFlattenedObj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/groupFlattenedObj.ts -------------------------------------------------------------------------------- /src/app/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/index.tsx -------------------------------------------------------------------------------- /src/app/utils/isImageString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/isImageString.ts -------------------------------------------------------------------------------- /src/app/utils/isPlainObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/isPlainObject.ts -------------------------------------------------------------------------------- /src/app/utils/msgTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/msgTypes.ts -------------------------------------------------------------------------------- /src/app/utils/postFigmaMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/postFigmaMessage.ts -------------------------------------------------------------------------------- /src/app/utils/proxyServer.ts: -------------------------------------------------------------------------------- 1 | export const proxyServer = "https://fuckcors.app/"; 2 | -------------------------------------------------------------------------------- /src/app/utils/showMsg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/showMsg.ts -------------------------------------------------------------------------------- /src/app/utils/validateRangeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/app/utils/validateRangeValue.ts -------------------------------------------------------------------------------- /src/data/pluginFrameSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/data/pluginFrameSize.ts -------------------------------------------------------------------------------- /src/data/skipSign.ts: -------------------------------------------------------------------------------- 1 | export const skipSign = ' ⏭️'; 2 | -------------------------------------------------------------------------------- /src/plugin/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/plugin/controller.ts -------------------------------------------------------------------------------- /src/plugin/utils/addSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/plugin/utils/addSign.ts -------------------------------------------------------------------------------- /src/plugin/utils/figmaNotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/plugin/utils/figmaNotify.ts -------------------------------------------------------------------------------- /src/plugin/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/plugin/utils/index.ts -------------------------------------------------------------------------------- /src/plugin/utils/populateByName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/plugin/utils/populateByName.ts -------------------------------------------------------------------------------- /src/plugin/utils/removeSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/plugin/utils/removeSign.ts -------------------------------------------------------------------------------- /src/plugin/utils/shuffleArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/src/plugin/utils/shuffleArray.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-to-Figma/HEAD/yarn.lock --------------------------------------------------------------------------------