-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 963 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 963 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
32
33
34
35
36
37
{
"dependencies": {
"@create-figma-plugin/ui": "^3",
"@create-figma-plugin/utilities": "^3",
"preact": "^10",
"unicode-emoji-picker": "^1.3.0"
},
"devDependencies": {
"@create-figma-plugin/build": "^3",
"@create-figma-plugin/tsconfig": "^3",
"@figma/plugin-typings": "*",
"@figma/widget-typings": "*",
"typescript": "^5"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"editorType": [
"figjam",
"figma"
],
"containsWidget": true,
"id": "1178811712656619576",
"name": "Button",
"main": "src/main.tsx",
"ui": "src/ui.tsx",
"networkAccess": {
"allowedDomains": [
"none"
],
"reasoning": "Button does not make any network requests. It forwards any requests to open webpages to your system browser."
},
"documentAccess": "dynamic-page"
}
}