-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "figma-draw-mask-under-selection",
"version": "1.1.0",
"description": "A Figma plugin to draw a mask under the selection",
"keywords": [
"create-figma-plugin",
"figma",
"figma-plugin",
"figma-plugins"
],
"license": "MIT",
"author": "Yuan Qing Lim",
"repository": {
"type": "git",
"url": "git://github.com/yuanqing/figma-plugins.git",
"directory": "packages/figma-draw-mask-under-selection"
},
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"src"
],
"scripts": {
"prebuild": "npm run clean",
"build": "build-figma-plugin --typecheck --minify",
"clean": "rimraf '*.log' build 'src/**/*.css.d.ts'",
"fix": "concurrently npm:fix:js npm:fix:json",
"fix:js": "eslint --fix 'src/**/*.{ts,tsx}'",
"fix:json": "prettier --loglevel error --write '*.json'",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prewatch": "npm run clean",
"watch": "build-figma-plugin --typecheck --watch"
},
"dependencies": {
"@create-figma-plugin/utilities": "2.5.0"
},
"figma-plugin": {
"name": "Draw Mask Under Selection",
"id": "806532458729477508",
"editorType": [
"figma"
],
"main": "src/main.ts"
}
}