🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@figma-export/output-styles-as-style-dictionary

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@figma-export/output-styles-as-style-dictionary

Outputter for @figma-export that exports styles to style-dictionary tokens

latest
Source
npmnpm
Version
6.2.4
Version published
Weekly downloads
376
-35.17%
Maintainers
1
Weekly downloads
 
Created
Source

@figma-export/output-styles-as-style-dictionary

Styles Outputter for @figma-export that exports styles to Style Dictionary JSON format.

With this outputter you can export all the styles as variables inside a .json.

This is a sample of the output:

$ tree output/
# output/
# └── base.json

.figmaexportrc.js

You can easily add this outputter to your .figmaexportrc.js:

import asStyleDictionary from '@figma-export/output-styles-as-style-dictionary'

export default {
    commands: [
        ['styles', {
            fileId: 'fzYhvQpqwhZDUImRz431Qo',
            outputters: [
                asStyleDictionary({
                    output: './output'
                })
            ]
        }],
    ]
}

output is mandatory.

getExtension, getFilename and getVariableName are optional.

import asStyleDictionary from '@figma-export/output-styles-as-style-dictionary'
import { kebabCase } from '@figma-export/utils'

...

asStyleDictionary({
    output: './output',
    getExtension: () => 'JSON',
    getFilename: () => 'base',
    getVariableName = (style, descriptor) => `${kebabCase(style.name).toLowerCase()}${descriptor != null ? `-${descriptor}` : ''}`,
})

defaults may change, please refer to ./src/index.ts

Install

Using npm:

npm install --save-dev @figma-export/output-styles-as-style-dictionary

or using yarn:

yarn add @figma-export/output-styles-as-style-dictionary --dev

Keywords

figma

FAQs

Package last updated on 04 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts