File size: 2,990 Bytes
59a4b52 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | {
"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"
}
} |