Skip to content

Commit

Permalink
feat(figma-plugin): initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuslundgard committed Oct 10, 2023
1 parent 252aa76 commit 7d240da
Show file tree
Hide file tree
Showing 8 changed files with 3,785 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/figma-plugin-sanity-color/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# figma-plugin-sanity-color

Figma plugin for syncing from `@sanity/color` to color variables in Figma.
8 changes: 8 additions & 0 deletions packages/figma-plugin-sanity-color/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "Sanity Color",
"id": "1174998087045912382",
"api": "1.0.0",
"main": "dist/index.mjs",
"editorType": ["figma"],
"ui": "src/ui.html"
}
27 changes: 27 additions & 0 deletions packages/figma-plugin-sanity-color/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "figma-plugin-sanity-color",
"version": "1.0.0",
"private": true,
"description": "Figma plugin for syncing from `@sanity/color` to color variables in Figma.",
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"manifest.json",
"src"
],
"scripts": {
"build": "rm -rf dist && pkg build --strict",
"watch": "pkg watch --strict"
},
"devDependencies": {
"@figma/plugin-typings": "^1.79.0",
"@sanity/color": "workspace:*",
"@sanity/pkg-utils": "^3.0.0",
"typescript": "^5.2.2"
}
}
Loading

0 comments on commit 7d240da

Please sign in to comment.