-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "uri-open-recent",
"publisher": "timmoverlaan",
"repository": "https://github.com/tverlaan/uri-open-recent",
"bugs": {
"url": "https://github.com/tverlaan/uri-open-recent/issues"
},
"displayName": "Open Recent via URI",
"description": "Open a recent project from outside of VS Code",
"version": "0.1.1",
"license": "MIT",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onUri"
],
"main": "./out/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package --githubBranch main",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^16.4.0",
"@types/vscode": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^9.0.2",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"__metadata": {
"id": "e8486a03-8c72-484b-b98e-c16c33f66bae",
"publisherDisplayName": "timmoverlaan",
"publisherId": "95886ccd-1b00-41f1-82b0-c105edc5d298",
"isPreReleaseVersion": false
}
}