-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.49 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
{
"name": "diff-clipboard",
"displayName": "Diff Clipboard",
"description": "compare with clipboard 剪切板代码对比",
"version": "0.0.2",
"publisher": "tfgzs",
"license": "MIT",
"engines": {
"vscode": "^1.84.0"
},
"icon": "logo.png",
"homepage": "https://github.com/tfgzs/vscode-diff-clipboard",
"repository": {
"type": "git",
"url": "https://github.com/tfgzs/vscode-diff-clipboard"
},
"bugs": {
"url": "https://github.com/tfgzs/vscode-diff-clipboard/issues"
},
"categories": [
"Other"
],
"keywords": [
"diff",
"clipboard",
"text",
"string"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "diffCode.compareWithClipboard",
"title": "%diffCode.compareWithClipboard.title%"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection",
"command": "diffCode.compareWithClipboard",
"title": "%diffCode.compareWithClipboard.title%"
}
]
}
},
"scripts": {
"build": "node build.js",
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@types/vscode": "^1.84.0",
"@vscode/test-electron": "^2.3.6",
"esbuild": "^0.19.9",
"eslint": "^8.54.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.3.2"
}
}