-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 913 Bytes
/
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
{
"dependencies": {
"@create-figma-plugin/ui": "^3.2.0",
"@create-figma-plugin/utilities": "^3.2.0",
"@types/prismjs": "^1.26.4",
"preact": ">=10",
"prismjs": "^1.29.0",
"react-simple-code-editor": "^0.14.1"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.2.0",
"@create-figma-plugin/tsconfig": "^3.2.0",
"@figma/plugin-typings": "1.90.0",
"@figma/widget-typings": "1.9.1",
"typescript": ">=4"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"editorType": [
"figma",
"figjam"
],
"containsWidget": true,
"id": "1394789460780312040",
"name": "Code Snippet",
"main": "src/main.tsx",
"ui": "src/ui.tsx",
"networkAccess": {
"allowedDomains": ["none"]
},
"documentAccess": "dynamic-page"
}
}