-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.1 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
42
43
44
45
46
47
48
{
"dependencies": {
"@create-figma-plugin/utilities": "^2.1.4"
},
"devDependencies": {
"@create-figma-plugin/build": "^3",
"@create-figma-plugin/tsconfig": "^3",
"@figma/plugin-typings": "^1",
"typescript": "^5"
},
"scripts": {
"build": "build-figma-plugin --typecheck --minify",
"watch": "build-figma-plugin --typecheck --watch"
},
"figma-plugin": {
"editorType": [
"figma"
],
"id": "972353621057384319",
"name": "Desaturate",
"menu": [
{
"name": "Frames & Groups",
"main": {
"src": "src/desaturate_frame.ts",
"handler": "desaturateContainer"
}
},
{
"name": "Image Fills",
"main": {
"src": "src/desaturate_image.ts",
"handler": "desaturateImage"
}
},
"-",
{
"name": "Lock Desaturation Layers",
"main": {
"src": "src/desaturate_frame.ts",
"handler": "lockDesaturateLayers"
}
}
],
"networkAccess": { "allowedDomains": ["none"] },
"documentAccess": "dynamic-page"
}
}