-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 950 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 950 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/vicinaehq/vicinae/refs/heads/main/extra/schemas/extension.json",
"name": "scout",
"title": "Scout",
"description": "Find files based on their content (PDFs and text files)",
"categories": [],
"license": "MIT",
"author": "woterr",
"contributors": [],
"pastContributors": [],
"icon": "extension_icon.png",
"commands": [
{
"name": "scout",
"title": "scout",
"subtitle": "Search for files containing keywords",
"description": "Searches for PDFs and text files containing the keywords provided.",
"mode": "view"
}
],
"preferences": [],
"scripts": {
"build": "vici build",
"dev": "vici develop",
"format": "biome format --write src",
"lint": "vici lint"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@vicinae/api": "^0.18.0",
"sqlite3": "^6.0.1"
}
}