-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 2.61 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
{
"name": "statistic",
"displayName": "statistic",
"description": "%description%",
"version": "0.6.3",
"publisher": "caixw",
"author": {
"name": "caixw",
"url": "https://github.com/caixw"
},
"keywords": [
"statistic",
"total",
"line",
"counter",
"analytics",
"project",
"sum"
],
"license": "MIT",
"homepage": "https://github.com/caixw/vscode-statistic",
"bugs": {
"url": "https://github.com/caixw/vscode-statistic/issues",
"email": "xnotepad@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/caixw/vscode-statistic.git"
},
"engines": {
"vscode": "^1.36.1"
},
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"icon": "resources/icon.png",
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onCommand:caixw.statistic.show"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "caixw.statistic.show",
"title": "%caixw.statistic.show.title%",
"category": "statistic",
"icon": {
"dark": "resources/icon.svg",
"light": "resources/icon.svg"
}
}
],
"menus": {
"explorer/context": [
{
"command": "caixw.statistic.show",
"when": "workbenchState=='workspace' && explorerResourceIsRoot || workbenchState=='folder'"
}
]
}
},
"scripts": {
"vscode:prepublish": "gulp compile",
"compile": "gulp compile",
"watch": "gulp watch",
"pretest": "gulp compile",
"test": "node ./out/test/runTest.js",
"clean": "gulp clean",
"package": "gulp package",
"publish": "gulp publish"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/vscode": "^1.50.0",
"del": "^6.0.0",
"glob": "^7.2.0",
"gulp": "^4.0.2",
"gulp-cached": "^1.1.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"mocha": "^9.2.2",
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"vsce": "^1.100.2",
"vscode-test": "^1.6.1"
},
"dependencies": {
"ignore": "^5.1.8",
"mime-types": "^2.1.33"
}
}