Files
envsitter-guard/package.json
David Ibia 4c2a52d35e chore: bump version to 0.0.3
Includes changelog entries for secure dotenv operations and envsitter ^0.0.3.
2026-01-13 19:39:22 +01:00

41 lines
1.0 KiB
JSON

{
"name": "envsitter-guard",
"version": "0.0.3",
"description": "OpenCode plugin that prevents agents/tools from reading or editing sensitive .env* files, while still allowing safe inspection via EnvSitter.",
"license": "MIT",
"type": "module",
"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.3"
},
"devDependencies": {
"@types/node": "*",
"husky": "^9.1.7",
"typescript": "*"
},
"publishConfig": {
"access": "public"
}
}