├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── lib ├── helpers.ts ├── index.ts └── templates.ts ├── package.json ├── tsconfig.json └── types └── FigmaApi.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/README.md -------------------------------------------------------------------------------- /lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/lib/helpers.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/lib/templates.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/FigmaApi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rihardsgravis/figma-parser/HEAD/types/FigmaApi.d.ts --------------------------------------------------------------------------------