mirror of
https://github.com/gogrlx/grlx-lsp.git
synced 2026-04-02 03:18:47 -07:00
LSP server for grlx recipe files (.grlx) providing: - Completion for ingredients, methods, properties, requisite types, and step ID references - Diagnostics for unknown ingredients/methods, missing required properties, unknown properties, and invalid requisite types - Hover documentation for all ingredients and methods with property tables - Full schema for all 6 grlx ingredients (cmd, file, group, pkg, service, user) with accurate properties from the grlx source
21 lines
502 B
Modula-2
21 lines
502 B
Modula-2
module github.com/gogrlx/grlx-lsp
|
|
|
|
go 1.26.1
|
|
|
|
require (
|
|
go.lsp.dev/jsonrpc2 v0.10.0
|
|
go.lsp.dev/protocol v0.12.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/segmentio/asm v1.1.3 // indirect
|
|
github.com/segmentio/encoding v0.3.4 // indirect
|
|
go.lsp.dev/pkg v0.0.0-20210717090340-384b27a52fb2 // indirect
|
|
go.lsp.dev/uri v0.3.0 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.8.0 // indirect
|
|
go.uber.org/zap v1.21.0 // indirect
|
|
golang.org/x/sys v0.41.0 // indirect
|
|
)
|