-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 931 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
37
38
39
40
41
{
"dependencies": {
"@create-figma-plugin/ui": "^2.1.3",
"@create-figma-plugin/utilities": "^2.1.3",
"preact": "^10"
},
"devDependencies": {
"@create-figma-plugin/build": "^2.1.3",
"@create-figma-plugin/tsconfig": "^2.1.3",
"@figma/plugin-typings": "1.50.0",
"typescript": "^4"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "1001444625792698603",
"name": "marketgoo copies",
"menu": [
{
"name": "Update copies",
"main": "src/main.ts",
"ui": "src/ui.tsx"
},
"-",
{
"name": "Reset layer names",
"main": "src/reset-names.ts"
},
{
"name": "Get missing copies",
"main": "src/missing-copies.ts",
"ui": "src/ui.tsx"
}
]
}
}