-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "memory-leak-file-check",
"displayName": "memory leak file check",
"description": "memory leak file check for code",
"version": "0.0.14",
"publisher": "gangan1996",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gangan1996/memory-leak-file-check.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "memory-leak-file-checker",
"title": "Memoryleak File Checker",
"icon": "media/dep.svg"
}
]
},
"views": {
"memory-leak-file-checker": [
{
"id": "memoryLeakFileCheck",
"name": "MemoryLeakFile Check",
"icon": "media/dep.svg",
"contextualTitle": "Package Explorer"
}
]
},
"commands": [
{
"command": "memoryLeakFileCheck.refreshEntry",
"title": "Refresh",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
}
],
"menus": {
"view/title": [
{
"command": "memoryLeakFileCheck.refreshEntry",
"when": "view == memoryLeakFileCheck",
"group": "navigation"
}
]
},
"colors": [
{
"id": "errorCode",
"description": "Background decoration color for large numbers",
"defaults": {
"dark": "#FF000055",
"light": "#FF000055",
"highContrast": "#FF000055"
}
},
{
"id": "warningCode",
"description": "Background decoration color for large numbers",
"defaults": {
"dark": "#cfa01555",
"light": "#cfa01555",
"highContrast": "#cfa01555"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint \"src/**/*.ts\""
},
"devDependencies": {
"@types/ftp": "^0.3.33",
"@types/mkdirp": "^0.5.2",
"@types/node": "^16.11.7",
"@types/rimraf": "^2.0.2",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"esbuild": "^0.17.12",
"eslint": "^8.26.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@babel/parser": "^7.21.3",
"@babel/traverse": "^7.21.3",
"@vue/compiler-dom": "^3.2.47",
"@vue/compiler-sfc": "^3.2.47",
"ftp": "^0.3.10",
"jsonc-parser": "^0.4.2",
"minimist": "^1.2.6",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"vue-template-compiler": "^2.7.14"
}
}