-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.75 KB
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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "bento-window",
"title": "Bento Window",
"description": "Tile multiple windows of the same app into a bento-box grid. The grid auto-adapts to the window count (2×2, 3×3, 5×2, etc.).",
"icon": "extension-icon.png",
"author": "Popo",
"categories": ["Productivity", "System"],
"license": "MIT",
"commands": [
{
"name": "tile",
"title": "Bento Tile",
"description": "Tile all windows of the target app into a grid that auto-adapts to the window count. Leave the preference empty to target the focused window's app.",
"mode": "no-view",
"preferences": [
{
"name": "appName",
"title": "Target App Names (Comma-Separated)",
"description": "Apps to tile, tried in order. Example: Ghostty, Terminal, iTerm2. Leave empty to auto-detect from the focused window.",
"type": "textfield",
"required": false,
"default": "Ghostty, Terminal, iTerm2, Alacritty, WezTerm"
},
{
"name": "gap",
"title": "Window Gap (px)",
"description": "Spacing between tiles and screen edges. 0 means flush tiles (default).",
"type": "textfield",
"required": false,
"default": "0"
}
]
}
],
"dependencies": {
"@raycast/api": "^1.83.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "20.8.10",
"@types/react": "18.3.3",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}