-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 KB
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
{
"name": "http-status-codes",
"displayName": "HTTP Status Codes",
"description": "Show the definition for all http status codes when you hover over them",
"publisher": "beatzoid",
"icon": "images/logo.png",
"version": "1.1.1",
"engines": {
"vscode": ">=1.99.3"
},
"repository": "https://github.com/Beatzoid/vscode-http-status-codes",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "http-status-codes.search",
"title": "Search HTTP Codes"
}
]
},
"capabilities": {
"hoverProvider": "true"
},
"scripts": {
"vscode:prepublish": "yarn 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": "yarn run test-compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^9.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "24.5.2",
"@types/vscode": "^1.98.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.36.0",
"glob": "^11.0.3",
"mocha": "^11.7.2",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
}
}