-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) ยท 3.13 KB
/
package.json
File metadata and controls
113 lines (113 loc) ยท 3.13 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
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
{
"name": "console-warrior",
"displayName": "Console Warrior",
"version": "1.3.31",
"description": "Visualize console messages (log, warn, error) directly in VSCode editor inline, boosting debugging and productivity.",
"categories": [
"Visualization",
"Debuggers",
"Other"
],
"keywords": [
"console.log",
"debugging",
"logs",
"visualization",
"inline logs",
"console warrior"
],
"homepage": "https://github.com/joncodeofficial/vscode-console-warrior#readme",
"bugs": {
"url": "https://github.com/joncodeofficial/vscode-console-warrior/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/joncodeofficial/vscode-console-warrior.git"
},
"publisher": "Jonpena",
"main": "./dist/extension.js",
"scripts": {
"compile": "tsc -p ./",
"format": "prettier --write --ignore-unknown src",
"format:check": "prettier --check src",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"package": "vsce package --out ./dist/",
"prepare": "simple-git-hooks",
"test": "vscode-test",
"watch": "tsc -watch -p ./"
},
"contributes": {
"commands": [
{
"command": "consoleWarrior.showPanel",
"title": "Console Warrior: Show Panel",
"icon": {
"light": "images/icon.png",
"dark": "images/icon.png"
}
}
],
"menus": {
"editor/title": [
{
"command": "consoleWarrior.showPanel",
"group": "navigation",
"when": "resourceLangId =~ /javascript|typescript|javascriptreact|typescriptreact|vue|svelte/"
}
]
}
},
"activationEvents": [
"workspaceContains:**/package.json"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"package.json": "sort-package-json"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.30",
"denque": "^2.1.0",
"portscanner": "^2.2.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/portscanner": "^2.1.4",
"@types/vscode": "^1.97.0",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.22.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.28.0",
"eslint-plugin-unused-imports": "^4.2.0",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"semantic-release": "^24.2.5",
"simple-git-hooks": "^2.13.0",
"sort-package-json": "^3.2.1",
"typescript": "^5.7.3"
},
"engines": {
"vscode": "^1.97.0"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#11131C",
"theme": "dark"
}
}