This repository has been archived by the owner on Feb 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.46 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
{
"name": "vscode-deprecated",
"displayName": "VS Code JSDocs Deprecated",
"license": "MIT",
"icon": "images/icon.png",
"version": "0.5.0",
"description": "VSCode extension that checks for deprecated imports",
"main": "./dist/extension.js",
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"commands": [
{
"title": "VSCode Deprecated",
"command": "vsCodeDeprecated.showAnnotations"
}
]
},
"engines": {
"vscode": "1.52.1"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"types": "tsc src/*.ts",
"lint": "eslint ./src/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/vscode-jsdocs-deprecated"
},
"keywords": [
"vscode",
"extension",
"deprecated"
],
"author": "Marius Balaj",
"publisher": "balajmarius",
"contributors": [
"Ioana Verebi"
],
"bugs": {
"url": "https://github.com/balajmarius/vscode-jsdocs-deprecated/issues"
},
"homepage": "https://github.com/balajmarius/vscode-jsdocs-deprecated#readme",
"dependencies": {
"typescript": "4.1.3"
},
"devDependencies": {
"@types/node": "14.14.22",
"@types/vscode": "1.52.0",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"eslint": "7.19.0"
}
}