-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.49 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.49 KB
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
{
"$schema": "https://raw.githubusercontent.com/vicinaehq/vicinae/refs/heads/main/extra/schemas/extension.json",
"name": "keepassxc",
"title": "KeePassXC",
"description": "Global password auto-type from KeePassXC.",
"categories": [],
"license": "MIT",
"author": "sagebind",
"contributors": [],
"pastContributors": [],
"icon": "keepassxc.svg",
"commands": [
{
"name": "search",
"title": "Search Passwords",
"subtitle": "KeePassXC",
"keywords": [
"keepassxc",
"autotype",
"password",
"autofill"
],
"description": "Search KeePassXC entries.",
"mode": "view",
"preferences": [
{
"name": "keyDelay",
"title": "Auto-Type Key Delay",
"description": "Delay between key presses (in milliseconds).",
"required": false,
"type": "textfield",
"default": "60"
}
]
}
],
"preferences": [
{
"name": "databasePath",
"title": "Database Path",
"description": "File path to your KeePassXC database file.",
"required": true,
"type": "file"
}
],
"scripts": {
"build": "vici build",
"dev": "vici develop",
"format": "biome format --write src",
"lint": "vici lint"
},
"dependencies": {
"@types/which": "^3.0.4",
"@vicinae/api": "^0.16.5",
"fast-xml-parser": "^5.3.2",
"which": "^6.0.0"
},
"devDependencies": {
"typescript": "^5.9.2",
"@biomejs/biome": "2.3.2"
}
}