UNPKG

vibe-guard

Version:

🛡️ Vibe-Guard Security Scanner - Catch security issues before they catch you!

102 lines (101 loc) 2.92 kB
{ "name": "vibe-guard", "version": "1.0.1", "description": "🛡️ Vibe-Guard Security Scanner - Catch security issues before they catch you!", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "vibe-guard": "./dist/bin/vibe-guard.js" }, "scripts": { "build": "tsc", "dev": "ts-node src/bin/vibe-guard.ts", "start": "node dist/bin/vibe-guard.js", "test": "npm run build && jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build", "package": "npm run clean && npm run build && npm run package:all", "package:all": "npm run package:macos && npm run package:linux && npm run package:windows", "package:macos": "npm run build && pkg dist/bin/vibe-guard.js --targets node18-macos-x64,node18-macos-arm64 --out-path binaries", "package:linux": "npm run build && pkg dist/bin/vibe-guard.js --targets node18-linux-x64,node18-linux-arm64 --out-path binaries", "package:windows": "npm run build && pkg dist/bin/vibe-guard.js --targets node18-win-x64 --out-path binaries", "dist": "npm run clean && npm run build && npm run package:all", "maintenance:check": "node scripts/maintenance.js check", "maintenance:update": "node scripts/maintenance.js update", "maintenance:full": "node scripts/maintenance.js full", "preversion": "npm test", "version": "git add -A src", "postversion": "git push && git push --tags" }, "keywords": [ "security", "scanner", "vulnerability", "cli", "typescript", "javascript", "secrets", "authentication", "security-scanner", "code-security", "vulnerability-detection", "security-audit", "code-analysis" ], "author": "Josef <devjosef@github.com>", "maintainers": [ "Josef <devjosef@github.com>" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Devjosef/vibe-guard.git" }, "bugs": { "url": "https://github.com/Devjosef/vibe-guard/issues" }, "homepage": "https://github.com/Devjosef/vibe-guard#readme", "files": [ "dist/**/*", "README.md", "LICENSE", "CHANGELOG.md" ], "dependencies": { "chalk": "^4.1.2", "cli-table3": "^0.6.3", "commander": "^14.0.0", "glob": "^11.0.2" }, "devDependencies": { "@types/glob": "^8.1.0", "@types/jest": "^29.5.14", "@types/node": "^22.15.23", "jest": "^29.7.0", "pkg": "^5.8.1", "ts-jest": "^29.3.4", "ts-node": "^10.9.0", "typescript": "^5.3.0" }, "engines": { "node": ">=16.0.0" }, "pkg": { "scripts": [ "dist/**/*.js" ], "assets": [ "package.json" ], "outputPath": "binaries" }, "publishConfig": { "access": "public" }, "funding": { "type": "github", "url": "https://github.com/sponsors/Devjosef" } }