generated from antfu/starter-vscode
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3 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
115
116
117
118
{
"publisher": "RichardZhang",
"name": "quickly-log",
"displayName": "Quickly Log",
"version": "0.1.1",
"private": false,
"packageManager": "[email protected]",
"description": "A quickly generate console.log extension in vscode",
"author": "Richard Zhang <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/Richard-Zhang1019",
"homepage": "https://github.com/Richard-Zhang1019/quickly-log#readme",
"repository": {
"type": "git",
"url": "https://github.com/Richard-Zhang1019/quickly-log"
},
"bugs": {
"url": "https://github.com/Richard-Zhang1019/quickly-log/issues"
},
"contributes": {
"commands": [
{
"command": "quickConsole.createConsoleLog",
"title": "create console.log"
},
{
"command": "quickConsole.clearConsoleLog",
"title": "clear all console.log"
},
{
"command": "quickConsole.toggleConsoleLog",
"title": "toggle all console.log's state of comment"
}
],
"keybindings": [
{
"command": "quickConsole.createConsoleLog",
"key": "ctrl+shift+l",
"mac": "cmd+shift+l"
},
{
"command": "quickConsole.clearConsoleLog",
"key": "ctrl+shift+k",
"mac": "cmd+shift+k"
},
{
"command": "quickConsole.toggleConsoleLog",
"key": "ctrl+shift+j",
"mac": "cmd+shift+j"
}
],
"configuration": {
"title": "Quickly Log",
"properties": {
"consoleVariablesName": {
"description": "Whether to output a variable name",
"type": "boolean",
"default": true
},
"consoleFilename": {
"description": "Whether to output filename",
"type": "boolean",
"default": false
},
"consoleLineNumber": {
"description": "Whether to output line number",
"type": "boolean",
"default": false
},
"consoleColon": {
"description": "Whether to output colon",
"type": "boolean",
"default": true
}
}
}
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "public/icon.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.83.0"
},
"activationEvents": [
"onStartupFinished"
],
"scripts": {
"build": "tsup src/index.ts --external vscode",
"dev": "nr build --watch",
"lint": "eslint .",
"vscode:prepublish": "nr build",
"publish": "vsce publish --no-dependencies",
"pack": "vsce package --no-dependencies",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && nr publish"
},
"devDependencies": {
"@antfu/ni": "^0.21.9",
"@types/node": "^20.9.0",
"@types/vscode": "^1.83.0",
"@vscode/vsce": "^2.22.0",
"bumpp": "^9.2.0",
"eslint": "^8.53.0",
"esno": "^4.0.0",
"pnpm": "^8.10.5",
"rimraf": "^5.0.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
}
}