-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 790 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 790 Bytes
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
{
"dependencies": {
"@create-figma-plugin/ui": "^3.0.1",
"@create-figma-plugin/utilities": "^3.0.1",
"preact": ">=10",
"prismjs": "^1.28.0",
"react-simple-code-editor": "^0.11.2"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.0.1",
"@create-figma-plugin/tsconfig": "^3.0.1",
"@figma/plugin-typings": "1.79.0",
"@types/prismjs": "^1.26.0",
"@types/react": ">=18",
"react": ">=18",
"typescript": ">=4"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "web-worker",
"name": "Web Worker - Figma plugin example",
"main": "src/main.ts",
"ui": "src/ui.tsx"
}
}