diff --git a/README.md b/README.md index 8bd9897..33b852a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # curlconverter -[curlconverter](https://curlconverter.com/) converts [curl](https://curl.se/docs/manual.html) commands in your clipboard to programs in Python, JavaScript, PHP, Go, Rust, Java and R. There's also a JSON output. +This extension adds a "Paste cURL as code" option to the right click menu when you're editing a Python, JavaScript, PHP, R, Go, Java, Rust or JSON file. -This extension adds a "Paste cURL as code" option when you right click (when editing a file in a supported programming language). +Screenshot of right click menu with Past cURL as code option highlighted + +The JSON output is [curlconverter](https://curlconverter.com/)'s parser's internal state. diff --git a/package.json b/package.json index f2e5de3..bed8d90 100644 --- a/package.json +++ b/package.json @@ -1,22 +1,22 @@ { "name": "curlconverter", - "version": "0.0.1", "displayName": "curlconverter", - "description": "VS Code extension to convert curl commands to Python, JS and other languages", + "description": "Convert curl commands to Python, JavaScript, PHP, R, Go, Java or Rust.", + "version": "0.0.2", "publisher": "curlconverter", "icon": "icon.png", - "homepage": "https://github.com/curlconverter/curlconverter", + "homepage": "https://curlconverter.com/", "author": { "name": "Boris Verkhovskiy", "email": "boris.verk@gmail.com" }, "repository": { "type": "git", - "url": "https://github.com/curlconverter/vs-code" + "url": "https://github.com/curlconverter/curlconverter-vscode" }, "license": "MIT", "engines": { - "vscode": "^1.63.0" + "vscode": "^1.66.0" }, "categories": [ "Other" @@ -68,17 +68,17 @@ "test": "node ./out/test/runTest.js" }, "devDependencies": { - "@types/glob": "^7.1.4", - "@types/mocha": "^9.0.0", - "@types/node": "14.x", - "@types/vscode": "^1.63.0", - "@typescript-eslint/eslint-plugin": "^5.1.0", - "@typescript-eslint/parser": "^5.1.0", - "@vscode/test-electron": "^1.6.2", - "eslint": "^8.1.0", - "glob": "^7.1.7", - "mocha": "^9.1.3", - "typescript": "^4.4.4" + "@types/glob": "^7.2.0", + "@types/mocha": "^9.1.0", + "@types/node": "17.x", + "@types/vscode": "^1.66.0", + "@typescript-eslint/eslint-plugin": "^5.19.0", + "@typescript-eslint/parser": "^5.19.0", + "@vscode/test-electron": "^2.1.3", + "eslint": "^8.13.0", + "glob": "^8.0.1", + "mocha": "^9.2.2", + "typescript": "^4.6.3" }, "dependencies": { "curlconverter": "^3.21.0" diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..8622908 Binary files /dev/null and b/screenshot.png differ