-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.92 KB
/
package.json
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
{
"name": "paste-escaped",
"displayName": "TypeScript Semantic Paste",
"version": "1.4.0",
"publisher": "gwicksted",
"description": "Escapes pasted text based on where the cursor is positioned",
"author": {
"name": "Graeme Wicksted"
},
"categories": [
"Formatters",
"Other"
],
"icon": "paste.png",
"galleryBanner": {
"color": "#f5f5f5",
"theme": "light"
},
"engines": {
"vscode": "^1.62.1",
"node": ">=8.0.0",
"npm": ">=5.3.0"
},
"activationEvents": [
"onLanguage:typescript",
"onCommand:pasteEscaped.action"
],
"repository": {
"type": "git",
"url": "https://github.com/gwicksted/paste-escaped.git"
},
"bugs": {
"url": "https://github.com/gwicksted/paste-escaped/issues"
},
"homepage": "https://github.com/gwicksted/paste-escaped/README.md",
"main": "./out/src/extension",
"license": "SEE LICENSE IN LICENSE",
"contributes": {
"commands": [
{
"command": "pasteEscaped.action",
"title": "Escape",
"category": "Paste"
}
],
"configuration": {
"title": "Paste Escaped",
"properties": {
"pasteEscaped.selectAfter": {
"type": "boolean",
"default": true,
"description": "Highlight the pasted text after pasting."
},
"pasteEscaped.escapeNonAnsi7": {
"type": "boolean",
"default": true,
"description": "Perform unicode escape sequences on characters outside of the ANSI-7 printable to prevent Latin-1 (ISO-8859-1) encoding issues if served via a webserver."
}
}
},
"keybindings": [
{
"key": "ctrl+shift+v",
"mac": "cmd+shift+v",
"win": "ctrl+shift+v",
"linux": "ctrl+shift+v",
"command": "pasteEscaped.action",
"when": "editorTextFocus && !editorReadonly && !editorHasMultipleSelections"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"vsix": "vsce package",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"lint": "eslint src/*.ts --"
},
"devDependencies": {
"@types/node": "^17.0.13",
"@types/vscode": "^1.62.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.7.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3"
},
"dependencies": {
"typescript": "^4.5.5"
}
}