24 lines
621 B
JSON
24 lines
621 B
JSON
{
|
|
"name": "figma-lit-exporter",
|
|
"version": "1.0.0",
|
|
"description": "Lit (Web Component) export for Figma",
|
|
"main": "code.js",
|
|
"scripts": {
|
|
"build": "esbuild code.ts --bundle --outfile=code.js --target=ES6",
|
|
"watch": "esbuild code.ts --bundle --outfile=code.js --target=ES6 --watch"
|
|
},
|
|
"author": "",
|
|
"license": "",
|
|
"devDependencies": {
|
|
"@figma/plugin-typings": "*",
|
|
"@types/mustache": "^4.2.2",
|
|
"esbuild": "^0.18.7",
|
|
"typescript": "*"
|
|
},
|
|
"dependencies": {
|
|
"change-case": "^4.1.2",
|
|
"js-beautify": "^1.14.8",
|
|
"mustache": "^4.2.0",
|
|
"xml-formatter": "^3.4.1"
|
|
}
|
|
} |