| { | |
| "name": "515f177e", | |
| "displayName": "VS Code Extension: API Contract Testing and Mock Server Generator", | |
| "description": "A VS Code extension that reads OpenAPI and Swagger spec files to auto-generate contract test suites and mock API servers. Validates API responses against schema definitions in real-time, catches breaking changes before deployment, generates Postman collections from spec files, and spins up a local mock server on any port for frontend development without a live backend. Supports OpenAPI 3.0 and 3.1 with YAML and JSON formats.", | |
| "version": "1.0.0", | |
| "engines": { | |
| "vscode": "^1.74.0" | |
| }, | |
| "categories": [ | |
| "Other" | |
| ], | |
| "publisher": "digitalforge", | |
| "activationEvents": [ | |
| "onStartupFinished" | |
| ], | |
| "main": "./out/extension", | |
| "contributes": { | |
| "commands": [ | |
| { | |
| "command": "515f177e.activate", | |
| "title": "VS Code Extension: API Contract Testing and Mock Server Generator: Activate" | |
| }, | |
| { | |
| "command": "515f177e.settings", | |
| "title": "VS Code Extension: API Contract Testing and Mock Server Generator: Open Settings" | |
| }, | |
| { | |
| "command": "515f177e.run", | |
| "title": "VS Code Extension: API Contract Testing and Mock Server Generator: Run" | |
| } | |
| ], | |
| "configuration": { | |
| "title": "VS Code Extension: API Contract Testing and Mock Server Generator", | |
| "properties": { | |
| "515f177e.enabled": { | |
| "type": "boolean", | |
| "default": true, | |
| "description": "Enable/disable VS Code Extension: API Contract Testing and Mock Server Generator" | |
| }, | |
| "515f177e.autoRun": { | |
| "type": "boolean", | |
| "default": false, | |
| "description": "Automatically run on file open" | |
| }, | |
| "515f177e.logLevel": { | |
| "type": "string", | |
| "enum": [ | |
| "error", | |
| "warn", | |
| "info", | |
| "debug" | |
| ], | |
| "default": "info", | |
| "description": "Log verbosity level" | |
| } | |
| } | |
| }, | |
| "keybindings": [ | |
| { | |
| "command": "515f177e.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/515f177e" | |
| }, | |
| "bugs": { | |
| "url": "https://github.com/digitalforge/515f177e/issues" | |
| } | |
| } |