How to convert css to object?

//input
.box{
    display: "block";
    height: 100px;
    width: 100px;
}

//output
{
    box: {
        display: "block",
        height: 100,
        width: 100
    }
}

are there any npm packages I can use? Solution, thank you!

Apr.02,2021
Menu