-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.02 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.02 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"publisher": "xhofe",
"name": "vscode-pb-jump",
"displayName": "vscode-pb-jump",
"version": "0.0.6",
"private": true,
"packageManager": "pnpm@10.4.1",
"description": "",
"author": "Andy Hsu <i@nn.ci>",
"license": "MIT",
"funding": "https://github.com/sponsors/xhofe",
"homepage": "https://github.com/xhofe/vscode-pb-jump#readme",
"repository": {
"type": "git",
"url": "https://github.com/xhofe/vscode-pb-jump"
},
"bugs": {
"url": "https://github.com/xhofe/vscode-pb-jump/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/xhofe"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"LICENSE.md",
"dist/*",
"l10n/*",
"package.nls.*.json",
"package.nls.json",
"res/*"
],
"engines": {
"vscode": "^1.97.0"
},
"activationEvents": [
"onLanguage:proto",
"onLanguage:go"
],
"l10n": "./l10n",
"contributes": {
"commands": [
{
"command": "vscode-pb-jump.jumpToImplementation",
"title": "%command.jumpToImplementation.title%",
"category": "%command.category%"
},
{
"command": "vscode-pb-jump.jumpToProto",
"title": "%command.jumpToProto.title%",
"category": "%command.category%"
}
],
"configuration": {
"type": "object",
"title": "vscode-pb-jump",
"properties": {
"vscode-pb-jump.defaultLanguage": {
"type": "string",
"default": "go",
"description": "%config.defaultLanguage.description%",
"enum": [
"go"
],
"enumDescriptions": [
"Golang"
]
},
"vscode-pb-jump.ignorePaths": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "%config.ignorePaths.description%"
}
}
},
"languages": [
{
"id": "proto",
"aliases": [
"Protocol Buffers",
"protobuf"
],
"extensions": [
".proto"
]
}
]
},
"scripts": {
"build": "tsdown src/index.ts --external vscode",
"dev": "nr build --watch --sourcemap",
"prepare": "nr update",
"update": "vscode-ext-gen --output src/generated/meta.ts",
"lint": "eslint .",
"test": "vitest",
"typecheck": "tsc --noEmit",
"vscode:prepublish": "nr build",
"release": "bumpp",
"ext:package": "vsce package --no-dependencies",
"ext:publish": "vsxpub --no-dependencies"
},
"devDependencies": {
"@antfu/eslint-config": "^4.19.0",
"@antfu/ni": "^23.3.1",
"@types/node": "^22.19.1",
"@types/vscode": "^1.97.0",
"@vscode/vsce": "^3.7.0",
"bumpp": "^10.3.1",
"eslint": "^9.39.1",
"ovsx": "^0.10.6",
"pnpm": "^10.22.0",
"reactive-vscode": "^0.2.22",
"taze": "^19.9.0",
"tsdown": "^0.9.9",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^3.2.4",
"vscode-ext-gen": "^1.4.0",
"vsxpub": "^0.1.2"
}
}