-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.33 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
{
"publisher": "chekweitan",
"name": "compare-view",
"displayName": "Compare View",
"description": "Create compare view",
"version": "0.14.1",
"icon": "compare-view.png",
"repository": {
"type": "git",
"url": "https://github.com/tanchekwei/compare-view"
},
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:compare-view.compareView"
],
"browser": "./dist/extension.js",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "compare-view.compareView",
"title": "Create Compare View"
}
],
"configuration": {
"title": "Compare View",
"properties": {
"compareView.closeRelatedTab": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether the extension will try to automatically close the related tab after the compare view is closed. Visual Studio Code will prompt the user to save or discard changes before allowing the tab to close. The extension cannot override this prompt."
},
"compareView.focusLeftSide": {
"type": "boolean",
"default": true,
"markdownDescription": "Automatically sets the focus to the left side of the compare view when the compare view is created."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"open-in-browser-windows": "vscode-test-web --extensionDevelopmentPath=%INIT_CWD%"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^8.2.2",
"@types/node": "^14.18.32",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vscode/test-web": "^0.0.32",
"eslint": "^7.27.0",
"glob": "^7.2.3",
"mocha": "^10.1.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"vscode-test": "^1.5.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}