-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 754 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
{
"name": "velociraptor",
"version": "0.1.0",
"description": "Velociraptor DFIR API client — opencode plugin with custom tools",
"type": "module",
"main": "dist/plugin.js",
"scripts": {
"build": "bun run tsc",
"test": "bun test",
"postinstall": "bun run build",
"prepublishOnly": "bun run tsc",
"install:global": "bash scripts/install-global.sh",
"uninstall:global": "bash scripts/uninstall-global.sh"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.3",
"@opencode-ai/plugin": "^1.15.12",
"js-yaml": "^4.1.0",
"protobufjs": "^7.5.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
},
"license": "MIT"
}