-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.51 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "rectangle-pro",
"title": "Rectangle Pro",
"description": "Control windows using Rectangle Pro",
"icon": "appIcon.png",
"author": "bfmatei",
"categories": [
"Applications"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/bfmatei/rectangle-pro-raycast.git"
},
"preferences": [
{
"type": "textfield",
"name": "openPath",
"title": "open Path",
"description": "The path to the open binary",
"default": "/usr/bin/open",
"required": false
}
],
"commands": [],
"dependencies": {
"@raycast/api": "^1.71.4"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.8",
"@types/lodash": "^4.17.0",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"eslint": "^8.57.0",
"lodash": "^4.17.21",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "run-s build:*",
"build:generate": "ts-node ./generate/index.ts",
"build:extension": "ray build -e dist",
"dev": "run-s dev:generate dev:run",
"dev:generate": "ts-node ./generate/index.ts",
"dev:run": "run-p dev:run:*",
"dev:run:generate": "nodemon --watch generate.ts --exec npm run build:generate",
"dev:run:extension": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}