This repository was archived by the owner on Apr 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) Β· 3.45 KB
/
package.json
File metadata and controls
104 lines (104 loc) Β· 3.45 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
{
"name": "buf-vscode",
"displayName": "Buf for VSCode",
"description": "π»ββοΈπ± Up-to-date, unofficial Visual Studio Code extension for Buf",
"version": "0.1.0",
"publisher": "auguwu",
"author": "Noel Towa <cutie@floofy.dev>",
"repository": "https://github.com/auguwu/buf-vscode.git",
"bugs": "https://github.com/auguwu/buf-vscode/issues/new",
"license": "Apache-2.0",
"categories": ["Formatters", "Linters", "Programming Languages"],
"keywords": ["proto", "proto3", "protocol buffers", "buf", "bufbuild"],
"main": "./out/extension.cjs",
"type": "module",
"engines": {
"vscode": "^1.79.x"
},
"activationEvents": [
"workspaceContains:**/*.proto",
"workspaceContains:**/buf.yaml",
"workspaceContains:**/buf.lock",
"workspaceContains:**/buf.mod",
"workspaceContains:**/buf.work",
"workspaceContains:**/buf.gen",
"workspaceContains:**/buf.gen.yaml",
"workspaceContains:**/buf.work.yaml"
],
"contributes": {
"configuration": {
"title": "buf.build",
"properties": {
"buf.binary": {
"type": "string",
"default": "buf",
"description": "Location of the `buf` binary"
},
"buf.experimentals.lsp.enable": {
"type": "boolean",
"default": true,
"description": "Whether to enable the experimental LSP functionality"
},
"buf.experimentals.lsp.args": {
"type": "array",
"items": { "type": "string" },
"default": ["--log-format=text"],
"description": "Arguments and/or flags to pass in to the `buf beta lsp` command"
}
}
},
"commands": [
{
"category": "Linters",
"command": "buf-vscode.lint",
"title": "Lint all Protocol Buffers files using `buf lint`"
}
],
"languages": [
{
"id": "yaml",
"filenames": ["buf.lock", "buf.mod", "buf.work", "buf.gen"]
},
{
"id": "proto",
"extensions": [".proto"],
"configuration": "./syntaxes/protobuf.configuration.json",
"aliases": ["Protocol Buffers", "Protobuf"]
}
],
"grammars": [
{
"language": "proto",
"scopeName": "source.proto",
"path": "./syntaxes/protobuf.tmLanguage.json"
}
]
},
"scripts": {
"publish": "./hack/publish.ts",
"package": "./hack/package.ts",
"watch": "vite build --watch",
"build": "vite build",
"lint": "biome lint",
"fmt": "biome format"
},
"dependencies": {
"@noelware/utils": "2.5.1",
"reactive-vscode": "0.2.14",
"semver": "7.7.1",
"vscode-languageclient": "9.0.1",
"which": "5.0.0"
},
"devDependencies": {
"@augu/tsconfig": "1.2.0",
"@biomejs/biome": "1.9.4",
"@types/bun": "1.2.10",
"@types/node": "22.15.3",
"@types/semver": "7.7.0",
"@types/vscode": "1.79",
"@types/which": "3.0.4",
"@vscode/vsce": "3.3.2",
"typescript": "5.8.3",
"vite": "6.3.3"
}
}