-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "reablocks-figma-plugin",
"author": "Good Code, LLC",
"license": "Apache-2.0",
"homepage": "https://github.com/reaviz/reablocks-figma-plugin#readme",
"version": "1.0.0",
"description": "A Figma plugin to generate CSS tokens for reablocks.",
"dependencies": {
"@create-figma-plugin/ui": "^3.2.0",
"@create-figma-plugin/utilities": "^3.2.0",
"chroma-js": "^2.4.2",
"copy-to-clipboard": "^3.3.3",
"preact": "^10.22.0",
"prismjs": "^1.28.0",
"react-simple-code-editor": "^0.13.1"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.2.0",
"@create-figma-plugin/tsconfig": "^3.2.0",
"@figma/plugin-typings": "^1.93.0",
"@types/chroma-js": "^2.4.4",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.3.2",
"react": "^18.3.1",
"typescript": "^5.4.5"
},
"scripts": {
"build": "build-figma-plugin --typecheck",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"editorType": [
"figma"
],
"documentAccess": "dynamic-page",
"id": "reablocks-figma-plugin",
"name": "Reablocks Figma Plugin",
"main": "src/main.ts",
"ui": "src/ui.tsx"
}
}