generated from antfu/starter-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.57 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": "daodaolea",
"name": "tree-log",
"displayName": "Tree Log",
"version": "0.0.3",
"packageManager": "[email protected]",
"description": "A plugin that automatically generates console.log statements in tree format",
"author": "DaoDaoLee <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/deebor/tree-log#readme",
"repository": {
"type": "git",
"url": "https://github.com/deebor/tree-log"
},
"bugs": {
"url": "https://github.com/deebor/tree-log/issues"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.81.1"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "tree-log.addLog",
"title": "Add Tree Log"
},
{
"command": "tree-log.deleteLog",
"title": "Delete Tree Log"
}
],
"keybindings": [
{
"command": "tree-log.addLog",
"key": "alt+c",
"mac": "alt+c",
"when": "editorFocus"
},
{
"command": "tree-log.deleteLog",
"key": "ctrl+alt+c",
"mac": "ctrl+alt+c"
}
],
"submenus": [
{
"id": "treelog",
"label": "Tree Log"
}
],
"menus": {
"editor/context": [
{
"submenu": "treelog",
"group": "6_px"
}
],
"treelog": [
{
"command": "tree-log.addLog"
},
{
"command": "tree-log.deleteLog"
}
]
},
"configuration": [
{
"title": "Add Console Params",
"properties": {
"tree-log.suffix": {
"type": "string",
"default": "",
"description": "The log top prefix"
}
}
}
]
},
"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/eslint-config": "^0.39.5",
"@antfu/ni": "^0.21.3",
"@types/node": "^18.16.16",
"@types/vscode": "^1.78.1",
"@vscode/vsce": "^2.19.0",
"bumpp": "^9.1.0",
"eslint": "^8.42.0",
"esno": "^0.16.3",
"pnpm": "^8.6.0",
"rimraf": "^5.0.1",
"tsup": "^6.7.0",
"typescript": "^5.1.3",
"vite": "^4.2.3",
"vitest": "^0.31.4"
}
}