-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.44 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://enconvo.com/schemas/extension.json",
"name": "frequent_search_sites",
"version": "0.0.1",
"description": "Use internet browsing to get real time information from frequent search sites.",
"title": "Frequent Search Sites",
"icon": "icon.png",
"author": "EnconvoAI",
"categories": [
"Search"
],
"license": "MIT",
"type": "module",
"commands": [
{
"name": "github",
"title": "Search GitHub",
"description": "Use internet browsing to get real time information from GitHub.",
"icon": "github.png",
"mode": "no-view",
"targetCommand": "internet_browsing|search",
"aiPlugin": true,
"preferences": [
{
"name": "include_domains",
"description": "Only search the specified domains. Separate multiple domains with a comma.",
"type": "textfield",
"required": false,
"title": "Specify search source website",
"default": "github.com",
"visibility": "hidden"
}
]
},
{
"name": "news",
"title": "Search News",
"description": "Use internet browsing to get real time information from news sites.",
"icon": "news.png",
"mode": "no-view",
"targetCommand": "internet_browsing|search",
"aiPlugin": true,
"preferences": [
{
"name": "topic",
"description": "[Optional] Select the search topic. This will optimize the search for the selected topic with tailored and curated information. Select General to ignore.",
"type": "dropdown",
"required": false,
"title": "Specify search topic",
"default": "news",
"visibility": "hidden",
"data": [
{
"title": "General",
"value": "general"
},
{
"title": "News",
"value": "news"
}
]
}
]
}
],
"dependencies": {
"@enconvo/api": "^0.1.161"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "19.0.1",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint --fix",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --list-different \"**/*.ts\"",
"build": "enconvo",
"dev": "enconvo --dev"
},
"minAppVersion": "1.8.8"
}