Files
admin b723e2bd7d Reorganize: Move all skills to skills/ folder
- Created skills/ directory
- Moved 272 skills to skills/ subfolder
- Kept agents/ at root level
- Kept installation scripts and docs at root level

Repository structure:
- skills/           - All 272 skills from skills.sh
- agents/           - Agent definitions
- *.sh, *.ps1       - Installation scripts
- README.md, etc.   - Documentation

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-23 18:05:17 +00:00

73 lines
2.0 KiB
JSON

{
"name": "cc-safety-net",
"version": "0.6.0",
"description": "Claude Code / OpenCode plugin - block destructive git and filesystem commands before execution",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"cc-safety-net": "dist/bin/cc-safety-net.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun run scripts/build.ts",
"build:types": "tsc --emitDeclarationOnly --declaration --noEmit false",
"build:schema": "bun run scripts/build-schema.ts",
"clean": "rm -rf dist",
"check": "bun run lint && bun run typecheck && bun run knip && bun run sg:scan && AGENT=1 bun test --coverage",
"lint": "biome check --write",
"typecheck": "tsc --project tsconfig.typecheck.json",
"knip": "knip --production",
"sg:scan": "ast-grep scan",
"test": "bun test",
"publish:dry-run": "bun run scripts/publish.ts --dry-run",
"prepare": "husky && bun run setup-hooks",
"setup-hooks": "bun -e 'await Bun.write(\".husky/pre-commit\", \"#!/usr/bin/env sh\\n\\nbun run knip && bun run lint-staged\\n\")' && chmod +x .husky/pre-commit"
},
"author": {
"name": "J Liew",
"email": "jliew@420024lab.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kenryu42/claude-code-safety-net.git"
},
"bugs": {
"url": "https://github.com/kenryu42/claude-code-safety-net/issues"
},
"homepage": "https://github.com/kenryu42/claude-code-safety-net#readme",
"devDependencies": {
"@ast-grep/cli": "^0.40.4",
"@biomejs/biome": "2.3.10",
"@opencode-ai/plugin": "^1.0.224",
"@types/bun": "latest",
"@types/shell-quote": "^1.7.5",
"husky": "^9.1.7",
"knip": "^5.79.0",
"lint-staged": "^16.2.7",
"zod": "^4.3.5"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"shell-quote": "^1.8.3"
},
"trustedDependencies": [
"@ast-grep/cli"
],
"engines": {
"node": ">=18"
},
"keywords": [
"claude-code",
"opencode",
"safety",
"plugin",
"security"
]
}