-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "figma-frame-utilities",
"version": "0.0.0",
"description": "",
"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-frame-utilities"
},
"type": "module",
"engines": {
"node": ">=18"
},
"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": "Frame Utilities",
"id": "1183770332911989857",
"editorType": [
"figma"
],
"menu": [
{
"name": "Frame Selection With Padding",
"main": "src/frame-selection-with-padding/main.ts",
"ui": "src/frame-selection-with-padding/ui.ts"
},
{
"name": "Set Frame Padding",
"main": "src/set-frame-padding/main.ts",
"ui": "src/set-frame-padding/ui.ts"
}
],
"relaunchButtons": {
"updateFramePadding": {
"name": "Update Frame Padding",
"main": "src/update-frame-padding/main.ts",
"multipleSelection": true
},
"editFramePadding": {
"name": "Edit Frame Padding",
"main": "src/set-frame-padding/main.ts",
"ui": "src/set-frame-padding/ui.ts",
"multipleSelection": true
}
}
}
}