-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.73 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
63
64
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-guardian",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "OpenCode plugin that auto-reviews approval requests using a guardian LLM with a risk-based decision framework",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "vitest run --passWithNoTests",
"format": "biome format --write",
"format:check": "biome format",
"lint": "biome lint && eslint .",
"lint:fix": "biome lint --write && eslint . --fix",
"check": "npm run format:check && npm run lint",
"check:fix": "npm run format && npm run lint:fix"
},
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"guardian",
"auto-review",
"approval",
"permission"
],
"author": "phanen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phanen/opencode-guardian.git"
},
"files": [
"dist/",
"commands/",
"scripts/install.sh",
"README.md",
"LICENSE"
],
"peerDependencies": {
"@opencode-ai/plugin": ">=0.13.7"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@kongyo2/similarity-ts": "^0.4.1",
"@opencode-ai/plugin": ">=0.13.7",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"ts-macros": "file:../ts-macros",
"ts-patch": "^3.3.0",
"typescript": "5.6",
"typescript-eslint": "^8.61.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@opencode-ai/sdk": "^1.2.10"
}
}