-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "ai-writing-assistant",
"title": "AI Writing Assistant",
"description": "AI Writing Assistant is here to assist you in any of your writing tasks, from fixing grammar to improving a paragraph.",
"icon": "command-icon.png",
"author": "pierremouchan",
"categories": [
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "AI Writing Assistant",
"description": "AI Writing Assistant is here to assist you in any of your writing tasks, from fixing grammar to improving a paragraph.",
"mode": "view"
}
],
"preferences": [
{
"name": "apiKey",
"key": "apiKey",
"title": "API Key",
"description": "OpenAI / anthropic / Groq",
"type": "password",
"defaultValue": "",
"required": true
},
{
"name": "commands",
"key": "commands",
"title": "Commands",
"description": "Choose the command you want to execute",
"type": "file",
"placeholder": "commands.csv",
"required": false
}
],
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@raycast/api": "^1.85.2",
"@raycast/utils": "^1.18.0",
"csv-parse": "^5.5.6",
"groq-sdk": "^0.8.0",
"openai": "^4.72.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"eslint": "^8.56.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}