UNPKG

quote-morph

Version:

Automatically switches quotes to backticks when using ${} in JS/TS strings.

69 lines (68 loc) 1.69 kB
{ "name": "quote-morph", "version": "1.0.4", "displayName": "QuoteMorph", "description": "Automatically switches quotes to backticks when using ${} in JS/TS strings.", "publisher": "pilotkid", "icon": "docs/images/icon.png", "license": "MIT", "author": { "name": "Marcello Bachechi", "url": "https://github.com/pilotkid" }, "homepage": "https://github.com/pilotkid/quote-morph", "sponsor": { "url": "https://ko-fi.com/marcellobachechi" }, "repository": { "type": "git", "url": "https://github.com/pilotkid/quote-morph" }, "engines": { "vscode": "^1.99.0" }, "categories": [ "Other" ], "activationEvents": [ "onLanguage:vue", "onLanguage:javascript", "onLanguage:typescript" ], "main": "./out/extension.js", "contributes": {}, "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "watch": "tsc -watch -p ./", "pretest": "npm run compile && npm run lint", "lint": "eslint src", "build": "tsc -p .", "package": "vsce package", "publish:vsce": "vsce publish", "publish:npm": "npm publish" }, "devDependencies": { "@types/vscode": "^1.99.0", "@types/mocha": "^10.0.10", "@types/node": "20.x", "@typescript-eslint/eslint-plugin": "^8.31.1", "@typescript-eslint/parser": "^8.31.1", "eslint": "^9.25.1", "typescript": "^5.8.3", "@vscode/test-cli": "^0.0.10", "@vscode/test-electron": "^2.5.2" }, "keywords": [ "vscode", "extension", "quotes", "backticks", "template literals", "javascript", "typescript", "string conversion", "developer tools", "productivity" ] }