-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "@common-creation/opencode-plugin-automode",
"version": "0.3.1",
"description": "OpenCode plugin that classifies bash commands with an LLM before execution: safe commands are allowed, dangerous ones are rejected.",
"author": "Common Creation, Co., Ltd.",
"repository": {
"type": "git",
"url": "git+https://github.com/common-creation/opencode-plugin-automode.git"
},
"type": "module",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build",
"npm-publish": "npm publish --access public",
"npm-publish:dry-run": "npm publish --access public --dry-run"
},
"keywords": [
"opencode",
"plugin",
"automode",
"safety",
"classifier"
],
"dependencies": {
"@opencode-ai/sdk": "^1.18.15"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.18.15",
"@opencode-ai/plugin-v2": "npm:@opencode-ai/plugin@beta",
"@types/node": "^24.0.0",
"typescript": "^5.7.0"
}
}