Spaces:
No application file
No application file
| { | |
| "name": "01b0940d", | |
| "displayName": "DevOps Infrastructure Code Snippets Extension", | |
| "description": "VS Code extension with 300+ production-ready code snippets for DevOps and infrastructure engineers. Covers Terraform modules, Kubernetes manifests, Dockerfile patterns, GitHub Actions workflows, GitLab CI pipelines, Helm chart templates, Ansible playbooks, Prometheus alert rules, Grafana dashboard configs, nginx configuration blocks, and shell scripting utilities. Includes snippets for AWS CDK, Pulumi, and Azure Bicep. Each snippet follows security-first principles with input validation, least-privilege IAM, secret management patterns, and observability hooks. Supports YAML, HCL, Dockerfile, bash, Python, and TypeScript.", | |
| "version": "1.0.0", | |
| "engines": { | |
| "vscode": "^1.74.0" | |
| }, | |
| "categories": [ | |
| "Other" | |
| ], | |
| "publisher": "digitalforge", | |
| "activationEvents": [ | |
| "onStartupFinished" | |
| ], | |
| "main": "./out/extension", | |
| "contributes": { | |
| "commands": [ | |
| { | |
| "command": "01b0940d.activate", | |
| "title": "DevOps Infrastructure Code Snippets Extension: Activate" | |
| }, | |
| { | |
| "command": "01b0940d.settings", | |
| "title": "DevOps Infrastructure Code Snippets Extension: Open Settings" | |
| }, | |
| { | |
| "command": "01b0940d.run", | |
| "title": "DevOps Infrastructure Code Snippets Extension: Run" | |
| } | |
| ], | |
| "configuration": { | |
| "title": "DevOps Infrastructure Code Snippets Extension", | |
| "properties": { | |
| "01b0940d.enabled": { | |
| "type": "boolean", | |
| "default": true, | |
| "description": "Enable/disable DevOps Infrastructure Code Snippets Extension" | |
| }, | |
| "01b0940d.autoRun": { | |
| "type": "boolean", | |
| "default": false, | |
| "description": "Automatically run on file open" | |
| }, | |
| "01b0940d.logLevel": { | |
| "type": "string", | |
| "enum": [ | |
| "error", | |
| "warn", | |
| "info", | |
| "debug" | |
| ], | |
| "default": "info", | |
| "description": "Log verbosity level" | |
| } | |
| } | |
| }, | |
| "keybindings": [ | |
| { | |
| "command": "01b0940d.activate", | |
| "key": "ctrl+shift+alt+a", | |
| "mac": "cmd+shift+alt+a", | |
| "when": "editorTextFocus" | |
| } | |
| ] | |
| }, | |
| "scripts": { | |
| "vscode:prepublish": "npm run compile", | |
| "compile": "tsc -p ./", | |
| "watch": "tsc -watch -p ./", | |
| "pretest": "npm run compile", | |
| "lint": "eslint src --ext ts" | |
| }, | |
| "devDependencies": { | |
| "@types/vscode": "^1.74.0", | |
| "@types/node": "^18.x", | |
| "typescript": "^5.0.0" | |
| }, | |
| "keywords": [ | |
| "devops_infra", | |
| "productivity", | |
| "automation" | |
| ], | |
| "license": "MIT", | |
| "icon": "icon.png", | |
| "galleryBanner": { | |
| "color": "#1e1e2e", | |
| "theme": "dark" | |
| }, | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/digitalforge/01b0940d" | |
| }, | |
| "bugs": { | |
| "url": "https://github.com/digitalforge/01b0940d/issues" | |
| } | |
| } |