- Add envsitter_add, envsitter_set, envsitter_unset, envsitter_delete tools - Add envsitter_help tool with comprehensive usage guide for agents - Change blocking to silent mode (error messages only, no toasts) - Bump envsitter dependency to ^0.0.4 - Update README with new tools and envsitter library reference - Update CHANGELOG for v0.0.4
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "envsitter-guard",
|
|
"version": "0.0.4",
|
|
"description": "OpenCode plugin that prevents agents/tools from reading or editing sensitive .env* files, while still allowing safe inspection via EnvSitter.",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"opencode",
|
|
"opencode-plugin",
|
|
"dotenv",
|
|
"env",
|
|
"secrets",
|
|
"security",
|
|
"guard",
|
|
"agent",
|
|
"llm",
|
|
"ai",
|
|
"mcp",
|
|
"envsitter"
|
|
],
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/boxpositron/envsitter-guard.git"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"typecheck": "tsc -p tsconfig.json",
|
|
"build:test": "tsc -p tsconfig.test.json",
|
|
"test": "npm run build:test && node --test dist-test/test/*.test.js",
|
|
"prepack": "npm run build",
|
|
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@opencode-ai/plugin": "^1.1.14",
|
|
"envsitter": "^0.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "*",
|
|
"husky": "^9.1.7",
|
|
"typescript": "*"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|