-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.32 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
{
"name": "pastedetector",
"displayName": "Paste Detector",
"version": "1.0.0",
"description": "",
"main": "./out/extension.js",
"engines": {
"vscode": "^1.34.0"
},
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "clipboard.copy",
"title": "Copy"
},
{
"command": "clipboard.paste",
"title": "Paste"
}
],
"keybindings": [
{
"command": "clipboard.copy",
"key": "ctrl+c",
"when": "editorTextFocus"
},
{
"command": "clipboard.paste",
"key": "ctrl+v",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"download-api": "vscode-dts dev",
"postdownload-api": "vscode-dts main",
"postinstall": "npm run download-api"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnubisLMS/PasteDetector/issues"
},
"homepage": "https://github.com/AnubisLMS/PasteDetector#readme",
"dependencies": {
"eslint": "^8.12.0",
"typescript": "^4.6.3",
"vscode-dts": "^0.3.3"
},
"devDependencies": {
"@types/node": "^17.0.23",
"vscode": "^1.1.37"
}
}