-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
49
50
{
"name": "figma-draw-slice-over-selection",
"version": "1.6.0",
"description": "A Figma plugin to draw a slice over 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-slice-over-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/ui": "2.5.0",
"@create-figma-plugin/utilities": "2.5.0",
"preact": "^10.15.1"
},
"figma-plugin": {
"name": "Draw Slice Over Selection",
"id": "767379335945775056",
"editorType": [
"figma"
],
"main": "src/main.ts",
"ui": "src/ui.ts"
}
}