-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.05 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.05 KB
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
{
"name": "smart-quotes-normalizer",
"displayName": "Smart Quotes Normalizer",
"description": "The Smart Quotes Normalizer is a lightweight VSCode Plugin designed to seamlessly convert smart quotes to standard quotes within your code. This essential tool ensures consistency in string quotations, preventing errors that can arise from the automatic conversion of standard quotes to smart quotes in various Microsoft products like Outlook and Word.",
"version": "0.0.2",
"author": "@ProfJordan",
"publisher": "pinebeecreative",
"license": "Beerware",
"pricing": "Free",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/ProfJordan/smart-quotes-normalizer.git"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.convertSmartQuotes",
"title": "Convert Smart Quotes to Straight Quotes"
}
],
"keybindings": [
{
"command": "extension.convertSmartQuotes",
"key": "ctrl+alt+s",
"mac": "cmd+alt+s",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.87.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9"
}
}