-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.67 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": "nitro-raycast",
"title": "nitro-raycast",
"description": "Nitro raycast extension. Using LLM right from Raycast",
"icon": "command-icon.png",
"author": "InNoobWeTrust",
"categories": [
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Nitro",
"subtitle": "Local LLM on Raycast!",
"description": "Using nitro, an open-sourced alternative to OpenAI that runs on you local machine.",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.66.2",
"download": "^8.0.0",
"electron": "^28.2.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/download": "^8.0.5",
"@types/jest": "^29.5.11",
"@types/node": "20.8.10",
"@types/react": "18.2.27",
"download-cli": "^1.1.1",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"scripts": {
"install": "download --extract --strip 1 --out node_modules/@janhq/nitro-node https://gitpkg.now.sh/InNoobWeTrust/nitro/nitro-node?142a60dab94bc2a4b0aa082dba895e3372581b7c",
"postinstall": "cd node_modules/@janhq/nitro-node && env -i HOME=\"$HOME\" $SHELL -l -c \"npm i && npm run build\"",
"test": "jest --verbose --detectOpenHandles",
"build": "ray build -e dist -o dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
},
"files": [
"dist",
"node_modules/@janhq/nitro-node"
],
"version": "0.0.1"
}