-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathgo.mod
More file actions
78 lines (73 loc) · 3.64 KB
/
go.mod
File metadata and controls
78 lines (73 loc) · 3.64 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
module github.com/web-infra-dev/rslint
go 1.26.0
replace (
github.com/microsoft/typescript-go/shim/api => ./shim/api
github.com/microsoft/typescript-go/shim/api/encoder => ./shim/api/encoder
github.com/microsoft/typescript-go/shim/ast => ./shim/ast
github.com/microsoft/typescript-go/shim/bundled => ./shim/bundled
github.com/microsoft/typescript-go/shim/checker => ./shim/checker
github.com/microsoft/typescript-go/shim/collections => ./shim/collections
github.com/microsoft/typescript-go/shim/compiler => ./shim/compiler
github.com/microsoft/typescript-go/shim/core => ./shim/core
github.com/microsoft/typescript-go/shim/diagnostics => ./shim/diagnostics
github.com/microsoft/typescript-go/shim/evaluator => ./shim/evaluator
github.com/microsoft/typescript-go/shim/jsonrpc => ./shim/jsonrpc
github.com/microsoft/typescript-go/shim/ls => ./shim/ls
github.com/microsoft/typescript-go/shim/lsp/lsproto => ./shim/lsp/lsproto
github.com/microsoft/typescript-go/shim/project => ./shim/project
github.com/microsoft/typescript-go/shim/scanner => ./shim/scanner
github.com/microsoft/typescript-go/shim/transformers/jsxtransforms => ./shim/transformers/jsxtransforms
github.com/microsoft/typescript-go/shim/tsoptions => ./shim/tsoptions
github.com/microsoft/typescript-go/shim/tspath => ./shim/tspath
github.com/microsoft/typescript-go/shim/vfs => ./shim/vfs
github.com/microsoft/typescript-go/shim/vfs/cachedvfs => ./shim/vfs/cachedvfs
github.com/microsoft/typescript-go/shim/vfs/osvfs => ./shim/vfs/osvfs
github.com/microsoft/typescript-go/shim/vfs/vfsmatch => ./shim/vfs/vfsmatch
)
require (
github.com/bmatcuk/doublestar/v4 v4.10.0
github.com/fatih/color v1.19.0
github.com/microsoft/typescript-go/shim/api/encoder v0.0.0
github.com/microsoft/typescript-go/shim/ast v0.0.0
github.com/microsoft/typescript-go/shim/bundled v0.0.0
github.com/microsoft/typescript-go/shim/checker v0.0.0
github.com/microsoft/typescript-go/shim/collections v0.0.0
github.com/microsoft/typescript-go/shim/compiler v0.0.0
github.com/microsoft/typescript-go/shim/core v0.0.0
github.com/microsoft/typescript-go/shim/diagnostics v0.0.0
github.com/microsoft/typescript-go/shim/evaluator v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/jsonrpc v0.0.0
github.com/microsoft/typescript-go/shim/lsp/lsproto v0.0.0
github.com/microsoft/typescript-go/shim/project v0.0.0
github.com/microsoft/typescript-go/shim/scanner v0.0.0
github.com/microsoft/typescript-go/shim/transformers/jsxtransforms v0.0.0
github.com/microsoft/typescript-go/shim/tsoptions v0.0.0
github.com/microsoft/typescript-go/shim/tspath v0.0.0
github.com/microsoft/typescript-go/shim/vfs v0.0.0
github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0
github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0
github.com/microsoft/typescript-go/shim/vfs/vfsmatch v0.0.0
github.com/rivo/uniseg v0.4.7
github.com/tailscale/hujson v0.0.0-20250605163823-992244df8c5a
golang.org/x/sync v0.20.0
golang.org/x/sys v0.45.0
golang.org/x/tools v0.45.0
gotest.tools/v3 v3.5.2
)
require (
github.com/google/go-cmp v0.7.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/mackerelio/go-osstat v0.2.7 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/zeebo/xxh3 v1.1.0 // indirect
golang.org/x/mod v0.36.0 // indirect
)
require (
github.com/dlclark/regexp2 v1.12.0
github.com/fxamacker/cbor/v2 v2.9.0
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433
github.com/microsoft/typescript-go v0.0.0-20260521185404-d99f6b2a5ff8 // indirect
golang.org/x/text v0.37.0
)