UNPKG

apx-toolkit

Version:

Automatically discover APIs and generate complete integration packages: code in 12 languages, TypeScript types, test suites, SDK packages, API documentation, mock servers, performance reports, and contract tests. Saves 2-4 weeks of work in seconds.

58 lines (56 loc) 1.23 kB
{ "name": "apx-toolkit", "displayName": "APX Toolkit", "description": "Discover APIs and generate code, docs, tests, and SDKs directly from VS Code", "version": "0.1.0", "publisher": "apx-toolkit", "engines": { "vscode": "^1.80.0" }, "categories": [ "Other", "Snippets", "Linters" ], "activationEvents": [ "onCommand:apx.discoverAPI", "onCommand:apx.generateCode" ], "main": "./out/extension.js", "contributes": { "commands": [ { "command": "apx.discoverAPI", "title": "Discover API with APX", "category": "APX" }, { "command": "apx.generateCode", "title": "Generate Code from API", "category": "APX" } ], "menus": { "explorer/context": [ { "command": "apx.discoverAPI", "when": "explorerResourceIsFolder", "group": "apx" } ] } }, "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "watch": "tsc -watch -p ./" }, "devDependencies": { "@types/vscode": "^1.80.0", "@types/node": "^20.0.0", "typescript": "^5.0.0" }, "dependencies": { "apx-toolkit": "^1.0.2" } }