-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
{
"name": "@byterover/byterover",
"version": "1.1.8",
"description": "ByteRover context engine plugin for OpenClaw — curates and queries conversation context via brv CLI",
"type": "module",
"main": "dist/index.js",
"license": "Elastic-2.0",
"author": "ByteRover",
"keywords": [
"openclaw",
"openclaw-plugin",
"byterover",
"context-engine"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run --dir test",
"typecheck": "tsc --noEmit"
},
"files": [
"dist/",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@byterover/brv-bridge": "^1.0.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.3.22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/campfirein/brv-openclaw-plugin.git"
},
"homepage": "https://github.com/campfirein/brv-openclaw-plugin#readme",
"bugs": {
"url": "https://github.com/campfirein/brv-openclaw-plugin/issues"
},
"publishConfig": {
"access": "public"
},
"openclaw": {
"compat": {
"pluginApi": ">=2026.3.22",
"minGatewayVersion": "2026.3.22"
},
"build": {
"openclawVersion": "2026.3.22",
"pluginSdkVersion": "2026.3.22"
},
"extensions": [
"./dist/index.js"
]
}
}