luasandbox: Add initial libraries (#34022)

This commit is contained in:
Eric Fritz 2022-04-18 17:12:34 -05:00 committed by GitHub
parent 2be88d5583
commit 0739347a19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 409 additions and 89 deletions

View File

@ -94,6 +94,9 @@
- - :permit
- WTFPL
- *2
- - :permit
- Public domain
- *2
- - :permit
- Apache*
- *2
@ -360,3 +363,10 @@
:why:
:versions: []
:when: 2022-02-18 21:09:06.289293214 Z
- - :license
- github.com/layeh/gopher-json
- Public domain
- :who:
:why:
:versions: []
:when: 2022-04-18 21:25:36.854878000 Z

1
go.mod
View File

@ -96,6 +96,7 @@ require (
github.com/keegancsmith/tmpfriend v0.0.0-20180423180255-86e88902a513
github.com/kr/text v0.2.0
github.com/kylelemons/godebug v1.1.0
github.com/layeh/gopher-json v0.0.0-20201124131017-552bb3c4c3bf
github.com/lib/pq v1.10.4
github.com/machinebox/graphql v0.2.2
github.com/mattn/go-sqlite3 v1.14.12

2
go.sum
View File

@ -1659,6 +1659,8 @@ github.com/labstack/echo/v4 v4.2.0/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4F
github.com/labstack/echo/v4 v4.5.0/go.mod h1:czIriw4a0C1dFun+ObrXp7ok03xON0N1awStJ6ArI7Y=
github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k=
github.com/labstack/gommon v0.3.1/go.mod h1:uW6kP17uPlLJsD3ijUYn3/M5bAxtlZhMI6m3MFxTMTM=
github.com/layeh/gopher-json v0.0.0-20201124131017-552bb3c4c3bf h1:bg6J/5S/AeTz7K9i/luJRj31BJ8f+LgYwKQBSOZxSEM=
github.com/layeh/gopher-json v0.0.0-20201124131017-552bb3c4c3bf/go.mod h1:E/q28EyUVBgBQnONAVPIdwvEsv4Ve0vaCA9JWim4+3I=
github.com/leodido/go-urn v1.1.0/go.mod h1:+cyI34gQWZcE1eQU7NVgKkkzdXDQHr1dBMtdAPozLkw=
github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII=
github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=

View File

@ -0,0 +1,26 @@
package luasandbox
import (
lua "github.com/yuin/gopher-lua"
"github.com/sourcegraph/sourcegraph/internal/luasandbox/libs"
"github.com/sourcegraph/sourcegraph/internal/luasandbox/util"
)
type LuaLib interface {
LuaAPI() map[string]lua.LGFunction
}
var defaultAPIs = map[string]LuaLib{
"json": libs.JSON,
"path": libs.Path,
}
var DefaultModules = func() map[string]lua.LGFunction {
modules := map[string]lua.LGFunction{}
for name, api := range defaultAPIs {
modules[name] = util.CreateModule(api.LuaAPI())
}
return modules
}()

View File

@ -0,0 +1,37 @@
package libs
import (
json "github.com/layeh/gopher-json"
lua "github.com/yuin/gopher-lua"
luar "layeh.com/gopher-luar"
"github.com/sourcegraph/sourcegraph/internal/luasandbox/util"
)
var JSON = jsonAPI{}
type jsonAPI struct{}
func (api jsonAPI) LuaAPI() map[string]lua.LGFunction {
return map[string]lua.LGFunction{
"decode": util.WrapSoftFailingLuaFunction(func(state *lua.LState) error {
value, err := json.Decode(state, []byte(state.CheckString(1)))
if err != nil {
return err
}
state.Push(value)
return nil
}),
"encode": util.WrapSoftFailingLuaFunction(func(state *lua.LState) error {
data, err := json.Encode(state.CheckAny(1))
if err != nil {
return err
}
state.Push(luar.New(state, string(data)))
return nil
}),
}
}

View File

@ -0,0 +1,56 @@
package libs
import (
"path/filepath"
lua "github.com/yuin/gopher-lua"
luar "layeh.com/gopher-luar"
"github.com/sourcegraph/sourcegraph/internal/luasandbox/util"
)
var Path = pathAPI{}
type pathAPI struct{}
func (api pathAPI) LuaAPI() map[string]lua.LGFunction {
return map[string]lua.LGFunction{
"basename": util.WrapLuaFunction(func(state *lua.LState) error {
state.Push(luar.New(state, filepath.Base(state.CheckString(1))))
return nil
}),
"dirname": util.WrapLuaFunction(func(state *lua.LState) error {
state.Push(luar.New(state, dirWithoutDot(state.CheckString(1))))
return nil
}),
"ancestors": util.WrapLuaFunction(func(state *lua.LState) error {
state.Push(luar.New(state, ancestorDirs(state.CheckString(1))))
return nil
}),
}
}
// dirWithoutDot returns the directory name of the given path. Unlike filepath.Dir,
// this function will return an empty string (instead of a `.`) to indicate an empty
// directory name.
func dirWithoutDot(path string) string {
if dir := filepath.Dir(path); dir != "." {
return dir
}
return ""
}
// ancestorDirs returns all ancestor dirnames of the given path. The last element of
// the returned slice will always be empty (indicating the repository root).
func ancestorDirs(path string) (ancestors []string) {
dir := dirWithoutDot(path)
for dir != "" {
ancestors = append(ancestors, dir)
dir = dirWithoutDot(dir)
}
ancestors = append(ancestors, "")
return ancestors
}

View File

@ -0,0 +1,37 @@
package libs
import (
"testing"
"github.com/google/go-cmp/cmp"
)
func TestDirWithoutDot(t *testing.T) {
testCases := []struct {
actual string
expected string
}{
{dirWithoutDot("foo.txt"), ""},
{dirWithoutDot("foo/bar.txt"), "foo"},
{dirWithoutDot("foo/baz"), "foo"},
}
for _, testCase := range testCases {
if testCase.actual != testCase.expected {
t.Errorf("unexpected dirname: want=%s got=%s", testCase.expected, testCase.actual)
}
}
}
func TestAncestorDirs(t *testing.T) {
expectedAncestors := []string{
"foo/bar/baz",
"foo/bar",
"foo",
"",
}
if diff := cmp.Diff(expectedAncestors, ancestorDirs("foo/bar/baz/bonk.txt")); diff != "" {
t.Errorf("unexpected ancestor dirs (-want +got):\n%s", diff)
}
}

View File

@ -9,6 +9,7 @@ import (
"github.com/google/go-cmp/cmp"
lua "github.com/yuin/gopher-lua"
"github.com/sourcegraph/sourcegraph/internal/luasandbox/util"
"github.com/sourcegraph/sourcegraph/internal/observation"
)
@ -89,11 +90,11 @@ func TestModule(t *testing.T) {
var stashedValue lua.LValue
api := map[string]lua.LGFunction{
"add": WrapLuaFunction(func(state *lua.LState) error {
"add": util.WrapLuaFunction(func(state *lua.LState) error {
state.Push(state.CheckNumber(1) + state.CheckNumber(2))
return nil
}),
"stash": WrapLuaFunction(func(state *lua.LState) error {
"stash": util.WrapLuaFunction(func(state *lua.LState) error {
stashedValue = state.CheckAny(1)
return nil
}),
@ -103,7 +104,7 @@ func TestModule(t *testing.T) {
sandbox, err := newService(&observation.TestContext).CreateSandbox(ctx, CreateOptions{
Modules: map[string]lua.LGFunction{
"testmod": CreateModule(api),
"testmod": util.CreateModule(api),
},
})
if err != nil {

View File

@ -1,7 +1,8 @@
package luasandbox
package util
import (
lua "github.com/yuin/gopher-lua"
luar "layeh.com/gopher-luar"
"github.com/sourcegraph/sourcegraph/lib/errors"
)
@ -17,14 +18,29 @@ func CreateModule(api map[string]lua.LGFunction) lua.LGFunction {
})
}
// WrapLuaFunction invokes the given callback and returns 2 (raising an error) if the
// returned error is non-nil, and returns 1 (success) otherwise. This wrapper function
// makes no assumptions about how the called function modifies the Lua virtual machine
// state.
// WrapLuaFunction invokes the given callback and returns 1 on success. This assumes
// the underlying function pushed a single return value onto the stack. An error is
// raised on failure (and the stack is assumed to be untouched).
func WrapLuaFunction(f func(state *lua.LState) error) func(state *lua.LState) int {
return func(state *lua.LState) int {
if err := f(state); err != nil {
state.RaiseError(err.Error())
return 0
}
return 1
}
}
// WrapSoftFailingLuaFunction invokes the given callback and returns 1 on success. This
// assumes the underlying function pushed a single return value onto the stack. A nil value
// and the error message is pushed to the stack on failure and 2 is returned. This allows
// the `value, err = call()` idiom.
func WrapSoftFailingLuaFunction(f func(state *lua.LState) error) func(state *lua.LState) int {
return func(state *lua.LState) int {
if err := f(state); err != nil {
state.Push(lua.LNil)
state.Push(luar.New(state, err.Error()))
return 2
}

View File

@ -9,10 +9,21 @@ Yarn,@babel/plugin-syntax-jsx,7.16.7,MIT,https://babel.dev/docs/en/next/babel-pl
Yarn,@babel/runtime,7.17.2,MIT,https://babel.dev/docs/en/next/babel-runtime,Approved
Yarn,@babel/types,7.17.0,MIT,https://babel.dev/docs/en/next/babel-types,Approved
Yarn,@codemirror/autocomplete,0.19.14,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/commands,0.19.8,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/gutter,0.19.9,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/highlight,0.19.7,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/history,0.19.2,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/lang-css,0.19.3,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/lang-html,0.19.4,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/lang-javascript,0.19.7,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/lang-markdown,0.19.6,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/language,0.19.8,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/rangeset,0.19.8,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/lint,0.19.6,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/matchbrackets,0.19.4,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/panel,0.19.1,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/rangeset,0.19.9,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/state,0.19.9,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/stream-parser,0.19.8,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/text,0.19.6,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/tooltip,0.19.16,MIT,http://marijnhaverbeke.nl,Approved
Yarn,@codemirror/view,0.19.47,MIT,http://marijnhaverbeke.nl,Approved
@ -26,9 +37,37 @@ Yarn,@emotion/sheet,1.1.0,MIT,Unknown,Approved
Yarn,@emotion/unitless,0.7.5,MIT,Unknown,Approved
Yarn,@emotion/utils,1.1.0,MIT,Unknown,Approved
Yarn,@emotion/weak-memoize,0.2.5,MIT,Unknown,Approved
Yarn,@endemolshinegroup/cosmiconfig-typescript-loader,3.0.2,MIT,https://github.com/EndemolShineGroup/cosmiconfig-typescript-loader,Approved
Yarn,@graphiql/toolkit,0.4.2,MIT,http://github.com/graphql/graphiql/tree/master/packages/graphiql-toolkit#readme,Approved
Yarn,@graphql-tools/batch-execute,8.4.1,MIT,Unknown,Approved
Yarn,@graphql-tools/delegate,8.7.0,MIT,Unknown,Approved
Yarn,@graphql-tools/graphql-file-loader,7.3.7,MIT,Unknown,Approved
Yarn,@graphql-tools/import,6.6.9,MIT,Unknown,Approved
Yarn,@graphql-tools/json-file-loader,7.3.7,MIT,Unknown,Approved
Yarn,@graphql-tools/load,7.5.5,MIT,Unknown,Approved
Yarn,@graphql-tools/merge,8.2.6,MIT,Unknown,Approved
Yarn,@graphql-tools/schema,8.3.5,MIT,Unknown,Approved
Yarn,@graphql-tools/url-loader,7.9.7,MIT,Unknown,Approved
Yarn,@graphql-tools/utils,8.6.5,MIT,Unknown,Approved
Yarn,@graphql-tools/wrap,8.4.9,MIT,Unknown,Approved
Yarn,@graphql-typed-document-node/core,3.1.0,MIT,Unknown,Approved
Yarn,@iarna/toml,2.2.5,ISC,https://github.com/iarna/iarna-toml#readme,Approved
Yarn,@juggle/resize-observer,3.3.1,Apache 2.0,https://juggle.studio/resize-observer/,Approved
Yarn,@lezer/common,0.15.11,MIT,Unknown,Approved
Yarn,@lezer/css,0.15.2,MIT,Unknown,Approved
Yarn,@lezer/html,0.15.1,MIT,Unknown,Approved
Yarn,@lezer/javascript,0.15.3,MIT,Unknown,Approved
Yarn,@lezer/lr,0.15.8,MIT,Unknown,Approved
Yarn,@lezer/markdown,0.15.6,MIT,Unknown,Approved
Yarn,@microsoft/fast-element,1.7.0,MIT,https://discord.gg/FcSNfg4,Approved
Yarn,@microsoft/fast-foundation,2.32.2,MIT,https://discord.gg/FcSNfg4,Approved
Yarn,@microsoft/fast-react-wrapper,0.1.25,MIT,https://discord.gg/FcSNfg4,Approved
Yarn,@microsoft/fast-web-utilities,5.1.0,MIT,https://discord.gg/FcSNfg4,Approved
Yarn,@n1ru4l/graphql-live-query,0.9.0,MIT,https://github.com/n1ru4l/graphql-live-queries#readme,Approved
Yarn,@n1ru4l/push-pull-async-iterable-iterator,3.2.0,MIT,https://github.com/n1ru4l,Approved
Yarn,@nodelib/fs.scandir,2.1.3,MIT,Unknown,Approved
Yarn,@nodelib/fs.stat,2.0.3,MIT,Unknown,Approved
Yarn,@nodelib/fs.walk,1.2.4,MIT,Unknown,Approved
Yarn,@popperjs/core,2.10.2,MIT,Unknown,Approved
Yarn,@reach/accordion,0.16.1,MIT,Unknown,Approved
Yarn,@reach/auto-id,0.16.0,MIT,Unknown,Approved
@ -82,6 +121,7 @@ Yarn,@sourcegraph/shared,1.0.0,Apache 2.0,Unknown,Approved
Yarn,@sourcegraph/storybook,0.0.1,Apache 2.0,Unknown,Approved
Yarn,@sourcegraph/stylelint-plugin-sourcegraph,1.0.0,Apache 2.0,Unknown,Approved
Yarn,@sourcegraph/template-parser,0.0.1,Apache 2.0,Unknown,Approved
Yarn,@sourcegraph/vscode,2.2.1,Apache 2.0,Unknown,Approved
Yarn,@sourcegraph/web,1.10.1,Apache 2.0,Unknown,Approved
Yarn,@sourcegraph/wildcard,0.0.1,Apache 2.0,Unknown,Approved
Yarn,@sqs/jsonc-parser,1.0.3,MIT,Unknown,Approved
@ -99,8 +139,8 @@ Yarn,@types/d3-time,1.1.1,MIT,Unknown,Approved
Yarn,@types/d3-time,2.1.1,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-time,Approved
Yarn,@types/d3-voronoi,1.1.9,MIT,Unknown,Approved
Yarn,@types/eslint,7.2.13,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint,Approved
Yarn,@types/eslint-scope,3.7.0,MIT,Unknown,Approved
Yarn,@types/estree,0.0.50,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree,Approved
Yarn,@types/eslint-scope,3.7.3,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope,Approved
Yarn,@types/estree,0.0.51,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree,Approved
Yarn,@types/filesystem,0.0.29,MIT,Unknown,Approved
Yarn,@types/filewriter,0.0.28,MIT,Unknown,Approved
Yarn,@types/har-format,1.2.4,MIT,Unknown,Approved
@ -111,16 +151,20 @@ Yarn,@types/lodash,4.14.180,MIT,https://github.com/DefinitelyTyped/DefinitelyTyp
Yarn,@types/node,14.14.41,MIT,Unknown,Approved
Yarn,@types/parse-json,4.0.0,MIT,Unknown,Approved
Yarn,@types/prop-types,15.5.6,MIT,Unknown,Approved
Yarn,@types/q,1.5.4,MIT,Unknown,Approved
Yarn,@types/react,17.0.0,MIT,Unknown,Approved
Yarn,@types/react-dom,16.9.8,MIT,Unknown,Approved
Yarn,@types/q,1.5.5,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/q,Approved
Yarn,@types/react,17.0.43,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react,Approved
Yarn,@types/react-dom,17.0.14,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom,Approved
Yarn,@types/react-transition-group,4.4.4,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-transition-group,Approved
Yarn,@types/responselike,1.0.0,MIT,Unknown,Approved
Yarn,@types/scheduler,0.16.2,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler,Approved
Yarn,@types/svgo,2.6.0,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/svgo,Approved
Yarn,@types/vscode,1.63.1,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vscode,Approved
Yarn,@types/websocket,1.0.5,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/websocket,Approved
Yarn,@types/ws,8.5.3,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws,Approved
Yarn,@visx/annotation,1.7.2,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/annotation,2.9.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/axis,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/axis,2.6.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/bounds,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/curve,1.7.0,MIT,Unknown,Approved
Yarn,@visx/curve,2.1.0,MIT,Unknown,Approved
@ -130,6 +174,7 @@ Yarn,@visx/event,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/event,2.6.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/glyph,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/grid,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/grid,2.6.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/group,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/group,2.1.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/mock-data,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
@ -138,6 +183,7 @@ Yarn,@visx/point,1.7.0,MIT,Unknown,Approved
Yarn,@visx/point,2.6.0,MIT,Unknown,Approved
Yarn,@visx/react-spring,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/responsive,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/responsive,2.8.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/scale,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/scale,2.2.2,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/shape,1.7.0,MIT,Unknown,Approved
@ -147,6 +193,8 @@ Yarn,@visx/text,2.3.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/tooltip,1.7.2,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/voronoi,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@visx/xychart,1.7.3,MIT,https://github.com/airbnb/visx#readme,Approved
Yarn,@vscode/codicons,0.0.29,CC-BY-4.0,Unknown,Approved
Yarn,@vscode/webview-ui-toolkit,0.9.0,MIT,https://github.com/microsoft/vscode-webview-ui-toolkit#readme,Approved
Yarn,@webassemblyjs/ast,1.11.1,MIT,Unknown,Approved
Yarn,@webassemblyjs/floating-point-hex-parser,1.11.1,MIT,Unknown,Approved
Yarn,@webassemblyjs/helper-api-error,1.11.1,MIT,Unknown,Approved
@ -168,7 +216,9 @@ Yarn,@wry/trie,0.3.0,MIT,https://github.com/benjamn/wryware,Approved
Yarn,@xstate/fsm,1.4.0,MIT,https://github.com/davidkpiano/xstate/tree/master/packages/xstate-fsm#readme,Approved
Yarn,@xtuc/ieee754,1.2.0,New BSD,http://feross.org,Approved
Yarn,@xtuc/long,4.2.2,Apache 2.0,Unknown,Approved
Yarn,abort-controller,3.0.0,MIT,https://github.com/mysticatea/abort-controller#readme,Approved
Yarn,acorn,8.6.0,MIT,https://github.com/acornjs/acorn,Approved
Yarn,acorn-import-assertions,1.8.0,MIT,Unknown,Approved
Yarn,ajv,6.12.6,MIT,https://github.com/ajv-validator/ajv,Approved
Yarn,ajv,8.6.3,MIT,https://ajv.js.org/,Approved
Yarn,ajv-formats,2.1.1,MIT,https://github.com/ajv-validator/ajv-formats#readme,Approved
@ -178,17 +228,24 @@ Yarn,ansi-regex,2.1.1,MIT,sindresorhus.com,Approved
Yarn,ansi-styles,2.2.1,MIT,sindresorhus.com,Approved
Yarn,ansi-styles,3.2.1,MIT,sindresorhus.com,Approved
Yarn,apollo3-cache-persist,0.12.1,MIT,https://github.com/apollographql/apollo-cache-persist#readme,Approved
Yarn,arg,4.1.0,MIT,Unknown,Approved
Yarn,argparse,1.0.10,MIT,Unknown,Approved
Yarn,argparse,2.0.1,Python-2.0,Unknown,Approved
Yarn,array-union,2.1.0,MIT,sindresorhus.com,Approved
Yarn,babel-plugin-macros,2.8.0,MIT,https://github.com/kentcdodds/babel-plugin-macros#readme,Approved
Yarn,backo2,1.0.2,MIT,Unknown,Approved
Yarn,balanced-match,0.4.2,MIT,https://github.com/juliangruber/balanced-match,Approved
Yarn,balanced-match,1.0.0,MIT,https://github.com/juliangruber/balanced-match,Approved
Yarn,base64-js,1.5.1,MIT,https://github.com/beatgammit/base64-js,Approved
Yarn,bloomfilter,0.0.18,New BSD,https://github.com/jasondavies/bloomfilter.js,Approved
Yarn,boolbase,1.0.0,ISC,https://github.com/fb55/boolbase,Approved
Yarn,bootstrap,4.5.2,MIT,https://getbootstrap.com/,Approved
Yarn,brace-expansion,1.1.11,MIT,https://github.com/juliangruber/brace-expansion,Approved
Yarn,braces,3.0.2,MIT,https://github.com/micromatch/braces,Approved
Yarn,browserslist,4.19.3,MIT,Unknown,Approved
Yarn,buffer,5.7.1,MIT,https://github.com/feross/buffer,Approved
Yarn,buffer-from,1.1.1,MIT,Unknown,Approved
Yarn,builtin-status-codes,3.0.0,MIT,bendrucker.me,Approved
Yarn,cacheable-lookup,5.0.3,MIT,https://github.com/szmarczak/cacheable-lookup#readme,Approved
Yarn,cacheable-request,7.0.1,MIT,http://lukechilds.co.uk,Approved
Yarn,call-bind,1.0.2,MIT,https://github.com/ljharb/call-bind#readme,Approved
@ -204,21 +261,21 @@ Yarn,chrome-trace-event,1.0.2,MIT,Unknown,Approved
Yarn,classnames,2.3.1,MIT,Unknown,Approved
Yarn,clone-response,1.0.2,MIT,https://github.com/lukechilds/clone-response,Approved
Go,cloud.google.com/go,v0.100.2,"Apache 2.0,New BSD","",Approved
Go,cloud.google.com/go/compute,v1.1.0,Apache 2.0,"",Approved
Go,cloud.google.com/go/compute,v1.5.0,Apache 2.0,"",Approved
Go,cloud.google.com/go/iam,v0.1.1,Apache 2.0,"",Approved
Go,cloud.google.com/go/kms,v1.1.0,Apache 2.0,"",Approved
Go,cloud.google.com/go/monitoring,v1.2.0,Apache 2.0,"",Approved
Go,cloud.google.com/go/profiler,v0.1.2,Apache 2.0,"",Approved
Go,cloud.google.com/go/profiler,v0.2.0,Apache 2.0,"",Approved
Go,cloud.google.com/go/pubsub,v1.17.1,Apache 2.0,"",Approved
Go,cloud.google.com/go/storage,v1.19.0,Apache 2.0,"",Approved
Yarn,coa,2.0.2,MIT,http://github.com/veged/coa,Approved
Yarn,codemirror,5.58.3,MIT,https://codemirror.net/,Approved
Yarn,codemirror-graphql,0.15.2,MIT,https://github.com/graphql/graphiql/tree/main/packages/codemirror-graphql#readme,Approved
Yarn,color,3.0.0,MIT,Unknown,Approved
Yarn,codemirror,5.65.2,MIT,https://codemirror.net/,Approved
Yarn,codemirror-graphql,1.2.14,MIT,https://github.com/graphql/graphiql/tree/main/packages/codemirror-graphql#readme,Approved
Yarn,color,3.2.1,MIT,Unknown,Approved
Yarn,color-convert,1.9.3,MIT,Unknown,Approved
Yarn,color-name,1.1.3,MIT,https://github.com/dfcreative/color-name,Approved
Yarn,color-name,1.1.4,MIT,https://github.com/colorjs/color-name,Approved
Yarn,color-string,1.5.5,MIT,Unknown,Approved
Yarn,color-string,1.9.0,MIT,Unknown,Approved
Yarn,comlink,4.3.0,Apache 2.0,Unknown,Approved
Yarn,commander,2.20.3,MIT,Unknown,Approved
Yarn,compute-scroll-into-view,1.0.17,MIT,https://scroll-into-view-if-needed.netlify.com/,Approved
@ -229,9 +286,14 @@ Yarn,core-js,2.6.11,MIT,Unknown,Approved
Yarn,core-js,3.10.0,MIT,Unknown,Approved
Yarn,cosmiconfig,5.2.1,MIT,https://github.com/davidtheclark/cosmiconfig#readme,Approved
Yarn,cosmiconfig,6.0.0,MIT,https://github.com/davidtheclark/cosmiconfig#readme,Approved
Yarn,cosmiconfig,7.0.1,MIT,https://github.com/davidtheclark/cosmiconfig#readme,Approved
Yarn,cosmiconfig-toml-loader,1.0.0,MIT,https://github.com/danielrearden/cosmiconfig-toml-loader#readme,Approved
Yarn,create-react-class,15.7.0,MIT,https://facebook.github.io/react/,Approved
Yarn,create-react-context,0.3.0,MIT,Unknown,Approved
Yarn,cross-fetch,3.1.4,MIT,https://github.com/lquixada/cross-fetch,Approved
Yarn,create-require,1.1.1,MIT,Unknown,Approved
Yarn,crelt,1.0.5,MIT,https://github.com/marijnh/crelt#readme,Approved
Yarn,cross-fetch,3.1.5,MIT,https://github.com/lquixada/cross-fetch,Approved
Yarn,cross-undici-fetch,0.1.27,MIT,Unknown,Approved
Yarn,css-color-names,0.0.4,MIT,http://www.daveeddy.com,Approved
Yarn,css-declaration-sorter,4.0.1,MIT,https://selwyn.cc/,Approved
Yarn,css-select,2.1.0,Simplified BSD,Unknown,Approved
@ -269,6 +331,7 @@ Yarn,d3-time,2.1.1,New BSD,https://d3js.org/d3-time/,Approved
Yarn,d3-time-format,2.1.3,New BSD,https://d3js.org/d3-time-format/,Approved
Yarn,d3-time-format,3.0.0,New BSD,https://d3js.org/d3-time-format/,Approved
Yarn,d3-voronoi,1.1.4,New BSD,https://d3js.org/d3-voronoi/,Approved
Yarn,dataloader,2.0.0,MIT,https://github.com/graphql/dataloader,Approved
Yarn,date-fns,2.16.1,MIT,Unknown,Approved
Yarn,debounce,1.2.0,MIT,Unknown,Approved
Yarn,decimal.js-light,2.5.0,MIT,Unknown,Approved
@ -280,26 +343,29 @@ Yarn,define-properties,1.1.3,MIT,Unknown,Approved
Yarn,delay,4.4.1,MIT,https://sindresorhus.com,Approved
Yarn,dequal,2.0.2,MIT,https://lukeed.com,Approved
Yarn,detect-node-es,1.1.0,MIT,https://github.com/thekashey/detect-node,Approved
Yarn,diff,4.0.2,New BSD,Unknown,Approved
Yarn,dir-glob,3.0.1,MIT,github.com/kevva,Approved
Yarn,dom-confetti,0.1.1,MIT,Unknown,Approved
Yarn,dom-helpers,3.4.0,MIT,Unknown,Approved
Yarn,dom-helpers,5.2.0,MIT,Unknown,Approved
Yarn,dom-serializer,0.1.1,MIT,Unknown,Approved
Yarn,dom-serializer,1.3.1,MIT,Unknown,Approved
Yarn,dom-serializer,1.3.2,MIT,Unknown,Approved
Yarn,domelementtype,1.3.1,Simplified BSD,Unknown,Approved
Yarn,domelementtype,2.2.0,Simplified BSD,Unknown,Approved
Yarn,domhandler,4.2.0,Simplified BSD,Unknown,Approved
Yarn,domutils,1.7.0,Simplified BSD,Unknown,Approved
Yarn,domutils,2.7.0,Simplified BSD,Unknown,Approved
Yarn,domutils,2.8.0,Simplified BSD,Unknown,Approved
Yarn,dot-prop,5.2.0,MIT,sindresorhus.com,Approved
Yarn,downshift,3.4.8,MIT,https://github.com/downshift-js/downshift#readme,Approved
Yarn,dset,3.1.1,MIT,https://lukeed.com,Approved
Yarn,electron-to-chromium,1.4.71,ISC,Unknown,Approved
Yarn,end-of-stream,1.4.4,MIT,https://github.com/mafintosh/end-of-stream,Approved
Yarn,enhanced-resolve,5.8.3,MIT,http://github.com/webpack/enhanced-resolve,Approved
Yarn,enhanced-resolve,5.9.2,MIT,http://github.com/webpack/enhanced-resolve,Approved
Yarn,entities,1.1.2,Simplified BSD,Unknown,Approved
Yarn,entities,2.0.0,Simplified BSD,Unknown,Approved
Yarn,entities,2.1.0,Simplified BSD,Unknown,Approved
Yarn,error-ex,1.3.2,MIT,Unknown,Approved
Yarn,es-abstract,1.18.3,MIT,http://ljharb.codes,Approved
Yarn,es-module-lexer,0.7.1,MIT,https://github.com/guybedford/es-module-lexer#readme,Approved
Yarn,es-abstract,1.19.1,MIT,http://ljharb.codes,Approved
Yarn,es-module-lexer,0.9.3,MIT,https://github.com/guybedford/es-module-lexer#readme,Approved
Yarn,es-to-primitive,1.2.1,MIT,Unknown,Approved
Yarn,escalade,3.1.1,MIT,https://lukeed.com,Approved
Yarn,escape-html,1.0.3,MIT,Unknown,Approved
@ -310,25 +376,36 @@ Yarn,esprima,4.0.1,Simplified BSD,http://esprima.org/,Approved
Yarn,esrecurse,4.3.0,Simplified BSD,https://github.com/estools/esrecurse,Approved
Yarn,estraverse,4.3.0,Simplified BSD,https://github.com/estools/estraverse,Approved
Yarn,estraverse,5.2.0,Simplified BSD,https://github.com/estools/estraverse,Approved
Yarn,event-target-shim,5.0.1,MIT,https://github.com/mysticatea/event-target-shim,Approved
Yarn,eventemitter3,3.1.2,MIT,Unknown,Approved
Yarn,events,3.3.0,MIT,http://jeditoolkit.com,Approved
Yarn,eventsource,1.1.0,MIT,http://github.com/EventSource/eventsource,Approved
Yarn,exenv-es6,1.0.0,MIT,https://github.com/chrisdholt/exenv-es6#readme,Approved
Yarn,extract-files,11.0.0,MIT,https://github.com/jaydenseric/extract-files#readme,Approved
Yarn,fast-deep-equal,3.1.3,MIT,https://github.com/epoberezkin/fast-deep-equal#readme,Approved
Yarn,fast-glob,3.2.11,MIT,https://mrmlnc.com,Approved
Yarn,fast-json-stable-stringify,2.1.0,MIT,https://github.com/epoberezkin/fast-json-stable-stringify,Approved
Yarn,fastq,1.6.0,ISC,https://github.com/mcollina/fastq#readme,Approved
Yarn,fill-range,7.0.1,MIT,https://github.com/jonschlinkert/fill-range,Approved
Yarn,find-root,1.1.0,MIT,Unknown,Approved
Yarn,focus-lock,0.10.1,MIT,https://github.com/theKashey/focus-lock#readme,Approved
Yarn,focus-visible,5.2.0,W3C,https://github.com/WICG/focus-visible,Approved
Yarn,form-data-encoder,1.7.2,MIT,Unknown,Approved
Yarn,formdata-node,4.3.2,MIT,Unknown,Approved
Yarn,function-bind,1.1.1,MIT,https://github.com/Raynos/function-bind,Approved
Yarn,fzy.js,0.4.1,MIT,http://github.com/jhawthorn/fzy.js,Approved
Yarn,get-intrinsic,1.1.1,MIT,https://github.com/ljharb/get-intrinsic#readme,Approved
Yarn,get-nonce,1.0.1,MIT,https://github.com/theKashey/get-nonce,Approved
Yarn,get-stream,5.1.0,MIT,sindresorhus.com,Approved
Go,github.com/DataDog/datadog-agent/pkg/obfuscate,v0.0.0-20211129110424-6491aa3bf583,Apache 2.0,"",Approved
Go,github.com/DataDog/datadog-go,v4.8.2,MIT,"",Approved
Go,github.com/DataDog/datadog-go/v5,v5.0.2,MIT,"",Approved
Yarn,get-symbol-description,1.0.0,MIT,https://github.com/inspect-js/get-symbol-description#readme,Approved
Go,github.com/DataDog/datadog-agent/pkg/obfuscate,v0.35.1,Apache 2.0,"",Approved
Go,github.com/DataDog/datadog-go,v4.8.3,MIT,"",Approved
Go,github.com/DataDog/datadog-go/v5,v5.1.0,MIT,"",Approved
Go,github.com/DataDog/gostackparse,v0.5.0,"Apache 2.0,New BSD","",Approved
Go,github.com/DataDog/sketches-go,v1.0.0,Apache 2.0,"",Approved
Go,github.com/DataDog/sketches-go,v1.4.1,Apache 2.0,"",Approved
Go,github.com/Masterminds/semver,v1.5.0,MIT,"",Approved
Go,github.com/NYTimes/gziphandler,v1.1.1,Apache 2.0,"",Approved
Go,github.com/ProtonMail/go-crypto,v0.0.0-20220113124808-70ae35bab23f,New BSD,"",Approved
Go,github.com/ProtonMail/go-crypto,v0.0.0-20220407094043-a94812496cf5,New BSD,"",Approved
Go,github.com/PuerkitoBio/purell,v1.1.1,New BSD,"",Approved
Go,github.com/PuerkitoBio/rehttp,v1.1.0,New BSD,"",Approved
Go,github.com/PuerkitoBio/urlesc,v0.0.0-20170810143723-de5bf2ad4578,New BSD,"",Approved
@ -337,7 +414,6 @@ Go,github.com/agext/levenshtein,v1.2.3,Apache 2.0,"",Approved
Go,github.com/alecthomas/chroma,v0.10.0,MIT,"",Approved
Go,github.com/andres-erbsen/clock,v0.0.0-20160526145045-9e14626cd129,MIT,"",Approved
Go,github.com/asaskevich/govalidator,v0.0.0-20210307081110-f21760c49a8d,MIT,"",Approved
Go,github.com/avelino/slugify,v0.0.0-20180501145920-855f152bd774,MIT,"",Approved
Go,github.com/aws/aws-sdk-go,v1.42.45,"Apache 2.0,New BSD","",Approved
Go,github.com/aws/aws-sdk-go-v2,v1.13.0,"Apache 2.0,New BSD","",Approved
Go,github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream,v1.2.0,Apache 2.0,"",Approved
@ -357,11 +433,11 @@ Go,github.com/aws/aws-sdk-go-v2/service/kms,v1.14.0,Apache 2.0,"",Approved
Go,github.com/aws/aws-sdk-go-v2/service/s3,v1.24.1,Apache 2.0,"",Approved
Go,github.com/aws/aws-sdk-go-v2/service/sso,v1.9.0,Apache 2.0,"",Approved
Go,github.com/aws/aws-sdk-go-v2/service/sts,v1.14.0,Apache 2.0,"",Approved
Go,github.com/aws/smithy-go,v1.10.0,Apache 2.0,"",Approved
Go,github.com/aws/smithy-go,v1.11.0,Apache 2.0,"",Approved
Go,github.com/aymerick/douceur,v0.2.0,MIT,"",Approved
Go,github.com/beevik/etree,v1.1.0,New BSD,"",Approved
Go,github.com/beorn7/perks,v1.0.1,MIT,"",Approved
Go,github.com/bits-and-blooms/bitset,v1.2.1,New BSD,"",Approved
Go,github.com/bits-and-blooms/bitset,v1.2.2,New BSD,"",Approved
Go,github.com/boj/redistore,v0.0.0-20180917114910-cd5dcc76aeff,MIT,"",Approved
Go,github.com/buildkite/go-buildkite/v3,v3.0.1,Simplified BSD,"",Approved
Go,github.com/cenkalti/backoff,v2.2.1,MIT,"",Approved
@ -374,6 +450,7 @@ Go,github.com/cockroachdb/redact,v1.1.3,Apache 2.0,"",Approved
Go,github.com/containerd/typeurl,v1.0.2,Apache 2.0,"",Approved
Go,github.com/coreos/go-oidc,v2.2.1,Apache 2.0,"",Approved
Go,github.com/coreos/go-semver,v0.3.0,Apache 2.0,"",Approved
Go,github.com/cpuguy83/go-md2man/v2,v2.0.1,MIT,"",Approved
Go,github.com/davecgh/go-spew,v1.1.1,ISC,"",Approved
Go,github.com/daviddengcn/go-colortext,v1.0.0,MIT,"",Approved
Go,github.com/derision-test/glock,v1.0.0,MIT,"",Approved
@ -387,19 +464,18 @@ Go,github.com/docker/docker-credential-helpers,v0.6.4,MIT,"",Approved
Go,github.com/docker/go-connections,v0.4.0,Apache 2.0,"",Approved
Go,github.com/docker/go-units,v0.4.0,Apache 2.0,"",Approved
Go,github.com/dustin/go-humanize,v1.0.0,MIT,"",Approved
Go,github.com/emirpasic/gods,v1.12.0,Simplified BSD,"",Approved
Go,github.com/emirpasic/gods,v1.16.0,Simplified BSD,"",Approved
Go,github.com/facebookgo/clock,v0.0.0-20150410010913-600d898af40a,MIT,"",Approved
Go,github.com/facebookgo/limitgroup,v0.0.0-20150612190941-6abd8d71ec01,BSD,"",Approved
Go,github.com/facebookgo/muster,v0.0.0-20150708232844-fd3d7953fd52,BSD,"",Approved
Go,github.com/fatih/color,v1.13.0,MIT,"",Approved
Go,github.com/fatih/structs,v1.1.0,MIT,"",Approved
Go,github.com/felixge/fgprof,v0.9.2,MIT,"",Approved
Go,github.com/felixge/httpsnoop,v1.0.2,MIT,"",Approved
Go,github.com/fsnotify/fsnotify,v1.5.1,New BSD,"",Approved
Go,github.com/gen2brain/beeep,v0.0.0-20210529141713-5586760f0cc1,Simplified BSD,"",Approved
Go,github.com/getsentry/raven-go,v0.2.0,New BSD,"",Approved
Go,github.com/getsentry/sentry-go,v0.12.0,Simplified BSD,"",Approved
Go,github.com/go-enry/go-enry/v2,v2.8.0,Apache 2.0,"",Approved
Go,github.com/go-enry/go-enry/v2,v2.8.2,Apache 2.0,"",Approved
Go,github.com/go-errors/errors,v1.4.2,MIT,"",Approved
Go,github.com/go-git/gcfg,v1.5.0,New BSD,"",Approved
Go,github.com/go-git/go-billy/v5,v5.3.1,Apache 2.0,"",Approved
@ -420,7 +496,6 @@ Go,github.com/go-openapi/validate,v0.20.3,Apache 2.0,"",Approved
Go,github.com/go-redsync/redsync,v1.4.2,New BSD,"",Approved
Go,github.com/go-stack/stack,v1.8.1,MIT,"",Approved
Go,github.com/gobwas/glob,v0.2.3,MIT,"",Approved
Go,github.com/godbus/dbus/v5,v5.0.6,Simplified BSD,"",Approved
Go,github.com/gogo/protobuf,v1.3.2,New BSD,"",Approved
Go,github.com/golang-jwt/jwt/v4,v4.2.0,MIT,"",Approved
Go,github.com/golang/gddo,v0.0.0-20210115222349-20d68f94ee1f,New BSD,"",Approved
@ -431,14 +506,14 @@ Go,github.com/gomodule/oauth1,v0.2.0,Apache 2.0,"",Approved
Go,github.com/gomodule/redigo,v2.0.0,Apache 2.0,"",Approved
Go,github.com/google/go-cmp,v0.5.7,New BSD,"",Approved
Go,github.com/google/go-github,v17.0.0,New BSD,"",Approved
Go,github.com/google/go-github/v28,v28.1.1,New BSD,"",Approved
Go,github.com/google/go-github/v31,v31.0.0,New BSD,"",Approved
Go,github.com/google/go-github/v41,v41.0.0,New BSD,"",Approved
Go,github.com/google/go-github/v43,v43.0.0,New BSD,"",Approved
Go,github.com/google/go-querystring,v1.1.0,New BSD,"",Approved
Go,github.com/google/gofuzz,v1.2.0,Apache 2.0,"",Approved
Go,github.com/google/pprof,v0.0.0-20220128192902-513e8ac6eea1,"Apache 2.0,ISC","",Approved
Go,github.com/google/pprof,v0.0.0-20220412212628-83db2b799d1f,"Apache 2.0,ISC","",Approved
Go,github.com/google/uuid,v1.3.0,New BSD,"",Approved
Go,github.com/googleapis/gax-go/v2,v2.1.1,New BSD,"",Approved
Go,github.com/googleapis/gax-go/v2,v2.3.0,New BSD,"",Approved
Go,github.com/googleapis/gnostic,v0.5.5,Apache 2.0,"",Approved
Go,github.com/gorilla/context,v1.1.1,New BSD,"",Approved
Go,github.com/gorilla/csrf,v1.7.1,New BSD,"",Approved
@ -453,7 +528,7 @@ Go,github.com/gosimple/slug,v1.12.0,Mozilla Public License 2.0,"",Approved
Go,github.com/gosimple/unidecode,v1.0.1,Apache 2.0,"",Approved
Go,github.com/goware/urlx,v0.3.1,MIT,"",Approved
Go,github.com/grafana-tools/sdk,v0.0.0-20220203092117-edae16afa87b,Apache 2.0,"",Approved
Go,github.com/grafana/regexp,v0.0.0-20220202152701-6a046c4caf32,New BSD,"",Approved
Go,github.com/grafana/regexp,v0.0.0-20220304095617-2e8d9baf4ac2,New BSD,"",Approved
Go,github.com/graph-gophers/graphql-go,v1.3.0,Simplified BSD,"",Approved
Go,github.com/graphql-go/graphql,v0.8.0,MIT,"",Approved
Go,github.com/gregjones/httpcache,v0.0.0-20190611155906-901d90724c79,MIT,"",Approved
@ -485,10 +560,11 @@ Go,github.com/karrick/godirwalk,v1.16.1,Simplified BSD,"",Approved
Go,github.com/keegancsmith/rpc,v1.3.0,New BSD,"",Approved
Go,github.com/keegancsmith/sqlf,v1.1.1,MIT,"",Approved
Go,github.com/keegancsmith/tmpfriend,v0.0.0-20180423180255-86e88902a513,MIT,"",Approved
Go,github.com/kevinburke/ssh_config,v1.1.0,MIT,"",Approved
Go,github.com/kevinburke/ssh_config,v1.2.0,MIT,"",Approved
Go,github.com/klauspost/compress,v1.14.2,"Apache 2.0,MIT,New BSD","",Approved
Go,github.com/kr/pretty,v0.3.0,MIT,"",Approved
Go,github.com/kr/text,v0.2.0,MIT,"",Approved
Go,github.com/layeh/gopher-json,v0.0.0-20201124131017-552bb3c4c3bf,Public domain,"",Approved
Go,github.com/lib/pq,v1.10.4,MIT,"",Approved
Go,github.com/lucasb-eyer/go-colorful,v1.2.0,MIT,"",Approved
Go,github.com/machinebox/graphql,v0.2.2,Apache 2.0,"",Approved
@ -497,7 +573,7 @@ Go,github.com/mattermost/xml-roundtrip-validator,v0.1.0,Apache 2.0,"",Approved
Go,github.com/mattn/go-colorable,v0.1.12,MIT,"",Approved
Go,github.com/mattn/go-isatty,v0.0.14,MIT,"",Approved
Go,github.com/mattn/go-runewidth,v0.0.13,MIT,"",Approved
Go,github.com/mattn/go-sqlite3,v1.14.11,MIT,"",Approved
Go,github.com/mattn/go-sqlite3,v1.14.12,MIT,"",Approved
Go,github.com/matttproud/golang_protobuf_extensions,v1.0.2-0.20181231171920-c182affec369,Apache 2.0,"",Approved
Go,github.com/mcuadros/go-version,v0.0.0-20190830083331-035f6764e8d2,MIT,"",Approved
Go,github.com/microcosm-cc/bluemonday,v1.0.17,New BSD,"",Approved
@ -533,13 +609,13 @@ Go,github.com/prometheus/common,v0.32.1,"Apache 2.0,New BSD","",Approved
Go,github.com/prometheus/common/sigv4,v0.1.0,Apache 2.0,"",Approved
Go,github.com/prometheus/procfs,v0.7.3,Apache 2.0,"",Approved
Go,github.com/qustavo/sqlhooks/v2,v2.1.0,MIT,"",Approved
Go,github.com/rainycape/unidecode,v0.0.0-20150907023854-cb7f23ec59be,Apache 2.0,"",Approved
Go,github.com/rivo/uniseg,v0.2.0,MIT,"",Approved
Go,github.com/rjeczalik/notify,v0.9.2,MIT,"",Approved
Go,github.com/rogpeppe/go-internal,v1.8.1,New BSD,"",Approved
Go,github.com/rs/xid,v1.3.0,MIT,"",Approved
Go,github.com/rs/xid,v1.4.0,MIT,"",Approved
Go,github.com/russellhaering/goxmldsig,v1.1.1,Apache 2.0,"",Approved
Go,github.com/russross/blackfriday,v1.5.2,Simplified BSD,"",Approved
Go,github.com/russross/blackfriday/v2,v2.1.0,Simplified BSD,"",Approved
Go,github.com/schollz/progressbar/v3,v3.8.5,MIT,"",Approved
Go,github.com/segmentio/fasthash,v1.0.3,MIT,"",Approved
Go,github.com/segmentio/ksuid,v1.0.4,MIT,"",Approved
@ -550,12 +626,13 @@ Go,github.com/shurcooL/highlight_go,v0.0.0-20191220051317-782971ddf21b,MIT,"",Ap
Go,github.com/shurcooL/octicon,v0.0.0-20191102190552-cbb32d6a785c,MIT,"",Approved
Go,github.com/shurcooL/sanitized_anchor_name,v1.0.0,MIT,"",Approved
Go,github.com/slack-go/slack,v0.10.1,"MIT,Simplified BSD","",Approved
Go,github.com/smacker/go-tree-sitter,v0.0.0-20220209044044-0d3022e933c3,MIT,"",Approved
Go,github.com/snabb/diagio,v1.0.0,MIT,"",Approved
Go,github.com/snabb/sitemap,v1.0.0,MIT,"",Approved
Go,github.com/sourcegraph/alertmanager,v0.21.1-0.20211110092431-863f5b1ee51b,Apache 2.0,"",Approved
Go,github.com/sourcegraph/annotate,v0.0.0-20160123013949-f4cad6c6324d,New BSD,"",Approved
Go,github.com/sourcegraph/ctxvfs,v0.0.0-20180418081416-2b65f1b1ea81,MIT,"",Approved
Go,github.com/sourcegraph/go-ctags,v0.0.0-20220221141751-78951a22ec08,Apache 2.0,"",Approved
Go,github.com/sourcegraph/go-ctags,v0.0.0-20220404085534-f974026334d7,Apache 2.0,"",Approved
Go,github.com/sourcegraph/go-diff,v0.6.1,MIT,"",Approved
Go,github.com/sourcegraph/go-jsonschema,v0.0.0-20211011105148-2e30f7bacbe1,MIT,"",Approved
Go,github.com/sourcegraph/go-langserver,v2.0.1-0.20181108233942-4a51fa2e1238,"MIT,New BSD","",Approved
@ -568,20 +645,21 @@ Go,github.com/sourcegraph/jsonx,v0.0.0-20200629203448-1a936bd500cf,MIT,"",Approv
Go,github.com/sourcegraph/oauth2,v0.0.0-20210825125341-77c1d99ece3c,New BSD,"",Approved
Go,github.com/sourcegraph/syntaxhighlight,v0.0.0-20170531221838-bd320f5d308e,New BSD,"",Approved
Go,github.com/sourcegraph/yaml,v1.0.1-0.20200714132230-56936252f152,MIT,"",Approved
Go,github.com/sourcegraph/zoekt,v0.0.0-20220317133250-094eea3551a4,Apache 2.0,"",Approved
Go,github.com/sourcegraph/zoekt,v0.0.0-20220415201645-48d1beaad294,Apache 2.0,"",Approved
Go,github.com/src-d/gcfg,v1.4.0,New BSD,"",Approved
Go,github.com/stretchr/testify,v1.7.0,MIT,"",Approved
Go,github.com/stretchr/testify,v1.7.1,MIT,"",Approved
Go,github.com/stripe/stripe-go,v70.15.0,MIT,"",Approved
Go,github.com/throttled/throttled/v2,v2.9.0,New BSD,"",Approved
Go,github.com/tidwall/gjson,v1.14.0,MIT,"",Approved
Go,github.com/tidwall/match,v1.1.1,MIT,"",Approved
Go,github.com/tidwall/pretty,v1.2.0,MIT,"",Approved
Go,github.com/tinylib/msgp,v1.1.2,MIT,"",Approved
Go,github.com/tinylib/msgp,v1.1.6,MIT,"",Approved
Go,github.com/tj/go-naturaldate,v1.3.0,MIT,"",Approved
Go,github.com/tomnomnom/linkheader,v0.0.0-20180905144013-02ca5825eb80,MIT,"",Approved
Go,github.com/uber/gonduit,v0.13.0,MIT,"",Approved
Go,github.com/uber/jaeger-client-go,v2.30.0,Apache 2.0,"",Approved
Go,github.com/uber/jaeger-lib,v2.4.1,Apache 2.0,"",Approved
Go,github.com/urfave/cli/v2,v2.4.0,MIT,"",Approved
Go,github.com/vmihailenco/msgpack/v5,v5.3.5,Simplified BSD,"",Approved
Go,github.com/vmihailenco/tagparser/v2,v2.0.0,Simplified BSD,"",Approved
Go,github.com/xanzy/ssh-agent,v0.3.1,Apache 2.0,"",Approved
@ -593,28 +671,31 @@ Go,github.com/xhit/go-str2duration/v2,v2.0.0,New BSD,"",Approved
Go,github.com/xlab/treeprint,v1.1.0,MIT,"",Approved
Go,github.com/yuin/goldmark,v1.4.4,MIT,"",Approved
Go,github.com/yuin/goldmark-emoji,v1.0.1,MIT,"",Approved
Go,github.com/yuin/gopher-lua,v0.0.0-20210529063254-f4c35e4016d9,MIT,"",Approved
Yarn,glob-parent,5.1.2,ISC,https://gulpjs.com/,Approved
Yarn,glob-to-regexp,0.4.1,Simplified BSD,Unknown,Approved
Yarn,globby,11.1.0,MIT,https://sindresorhus.com,Approved
Go,go.etcd.io/bbolt,v1.3.6,MIT,"",Approved
Go,go.mongodb.org/mongo-driver,v1.8.3,Apache 2.0,"",Approved
Go,go.opencensus.io,v0.23.0,Apache 2.0,"",Approved
Go,go.uber.org/atomic,v1.9.0,MIT,"",Approved
Go,go.uber.org/automaxprocs,v1.4.0,MIT,"",Approved
Go,go.uber.org/automaxprocs,v1.5.1,MIT,"",Approved
Go,go.uber.org/ratelimit,v0.2.0,MIT,"",Approved
Go,golang.org/x/crypto,v0.0.0-20220315160706-3147a52a75dd,New BSD,"",Approved
Go,golang.org/x/mod,v0.5.1,New BSD,"",Approved
Go,golang.org/x/net,v0.0.0-20220127200216-cd36cc0744dd,New BSD,"",Approved
Go,golang.org/x/crypto,v0.0.0-20220411220226-7b82a4e95df4,New BSD,"",Approved
Go,golang.org/x/mod,v0.6.0-dev.0.20220106191415-9b9b3d81d5e3,New BSD,"",Approved
Go,golang.org/x/net,v0.0.0-20220412020605-290c469a71a5,New BSD,"",Approved
Go,golang.org/x/sync,v0.0.0-20210220032951-036812b2e83c,New BSD,"",Approved
Go,golang.org/x/sys,v0.0.0-20220209214540-3681064d5158,New BSD,"",Approved
Go,golang.org/x/sys,v0.0.0-20220412211240-33da011f77ad,New BSD,"",Approved
Go,golang.org/x/term,v0.0.0-20210927222741-03fcf44c2211,New BSD,"",Approved
Go,golang.org/x/text,v0.3.7,New BSD,"",Approved
Go,golang.org/x/time,v0.0.0-20211116232009-f0f3c7e86c11,New BSD,"",Approved
Go,golang.org/x/tools,v0.1.9,New BSD,"",Approved
Go,golang.org/x/xerrors,v0.0.0-20200804184101-5ec99f83aff1,New BSD,"",Approved
Go,google.golang.org/api,v0.66.0,New BSD,"",Approved
Go,google.golang.org/genproto,v0.0.0-20220202230416-2a053f022f0d,Apache 2.0,"",Approved
Go,google.golang.org/grpc,v1.44.0,Apache 2.0,"",Approved
Go,google.golang.org/protobuf,v1.27.1,New BSD,"",Approved
Go,gopkg.in/DataDog/dd-trace-go.v1,v1.36.2,"Apache 2.0,New BSD","",Approved
Go,golang.org/x/time,v0.0.0-20220411224347-583f2d630306,New BSD,"",Approved
Go,golang.org/x/tools,v0.1.10,New BSD,"",Approved
Go,golang.org/x/xerrors,v0.0.0-20220411194840-2f41105eb62f,New BSD,"",Approved
Go,google.golang.org/api,v0.74.0,New BSD,"",Approved
Go,google.golang.org/genproto,v0.0.0-20220407144326-9054f6ed7bac,Apache 2.0,"",Approved
Go,google.golang.org/grpc,v1.45.0,Apache 2.0,"",Approved
Go,google.golang.org/protobuf,v1.28.0,New BSD,"",Approved
Go,gopkg.in/DataDog/dd-trace-go.v1,v1.37.1,"Apache 2.0,New BSD","",Approved
Go,gopkg.in/alexcesaro/statsd.v2,v2.0.0,MIT,"",Approved
Go,gopkg.in/inf.v0,v0.9.1,New BSD,"",Approved
Go,gopkg.in/natefinch/lumberjack.v2,v2.0.0,MIT,"",Approved
@ -625,13 +706,13 @@ Go,gopkg.in/yaml.v2,v2.4.0,"Apache 2.0,MIT","",Approved
Go,gopkg.in/yaml.v3,v3.0.0-20210107192922-496545a6307b,MIT,"",Approved
Yarn,got,11.5.2,MIT,Unknown,Approved
Yarn,graceful-fs,4.2.9,ISC,Unknown,Approved
Yarn,graphiql,1.3.2,MIT,http://github.com/graphql/graphiql/tree/master/packages/graphiql#readme,Approved
Yarn,graphql-language-service,3.1.2,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme,Approved
Yarn,graphql-language-service-interface,2.8.2,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-interface#readme,Approved
Yarn,graphql-language-service-parser,1.9.0,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-parser#readme,Approved
Yarn,graphql-language-service-types,1.8.0,MIT,https://github.com/graphql/graphiql/tree/main/graphql-language-service-types#readme,Approved
Yarn,graphql-language-service-utils,2.5.1,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-utils#readme,Approved
Yarn,graphiql,1.8.0,MIT,http://github.com/graphql/graphiql/tree/master/packages/graphiql#readme,Approved
Yarn,graphql-config,4.2.0,MIT,https://graphql-config.com/,Approved
Yarn,graphql-executor,0.0.22,MIT,https://github.com/yaacovCR/graphql-executor,Approved
Yarn,graphql-language-service,5.0.1,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme,Approved
Yarn,graphql-sse,1.1.0,MIT,https://github.com/enisdenjo/graphql-sse#readme,Approved
Yarn,graphql-tag,2.12.5,MIT,https://github.com/apollographql/graphql-tag#readme,Approved
Yarn,graphql-ws,5.6.4,MIT,https://github.com/enisdenjo/graphql-ws#readme,Approved
Yarn,gud,1.0.0,MIT,Unknown,Approved
Yarn,has,1.0.3,MIT,https://github.com/tarruda/has,Approved
Yarn,has-ansi,2.0.0,MIT,sindresorhus.com,Approved
@ -640,6 +721,7 @@ Yarn,has-flag,1.0.0,MIT,sindresorhus.com,Approved
Yarn,has-flag,3.0.0,MIT,sindresorhus.com,Approved
Yarn,has-flag,4.0.0,MIT,sindresorhus.com,Approved
Yarn,has-symbols,1.0.2,MIT,http://ljharb.codes,Approved
Yarn,has-tostringtag,1.0.0,MIT,https://github.com/inspect-js/has-tostringtag#readme,Approved
Yarn,hex-color-regex,1.1.0,MIT,http://www.tunnckocore.tk,Approved
Yarn,highlight.js,10.7.3,New BSD,https://highlightjs.org/,Approved
Yarn,highlightjs-graphql,1.0.2,MIT,https://github.com/dpeek/highlightjs-graphql#readme,Approved
@ -651,9 +733,14 @@ Yarn,htmlparser2,6.1.0,MIT,Unknown,Approved
Yarn,http-cache-semantics,4.0.3,Simplified BSD,https://kornel.ski/,Approved
Yarn,http-status-codes,2.1.4,MIT,Unknown,Approved
Yarn,http2-wrapper,1.0.0-beta.5.2,MIT,https://github.com/szmarczak/http2-wrapper#readme,Approved
Yarn,https-browserify,1.0.0,MIT,https://github.com/substack/https-browserify,Approved
Yarn,ieee754,1.2.1,New BSD,https://feross.org,Approved
Yarn,ignore,5.2.0,MIT,Unknown,Approved
Yarn,import-fresh,2.0.0,MIT,sindresorhus.com,Approved
Yarn,import-fresh,3.3.0,MIT,https://sindresorhus.com,Approved
Yarn,indexes-of,1.0.1,MIT,https://github.com/dominictarr/indexes-of,Approved
Yarn,inherits,2.0.4,ISC,Unknown,Approved
Yarn,internal-slot,1.0.3,MIT,https://github.com/ljharb/internal-slot#readme,Approved
Yarn,internmap,1.0.1,ISC,https://github.com/mbostock/internmap/,Approved
Yarn,invariant,2.2.4,MIT,Unknown,Approved
Yarn,is-absolute-url,2.1.0,MIT,http://sindresorhus.com,Approved
@ -663,20 +750,27 @@ Yarn,is-arrayish,0.2.1,MIT,http://github.com/qix-,Approved
Yarn,is-arrayish,0.3.2,MIT,http://github.com/qix-,Approved
Yarn,is-bigint,1.0.1,MIT,https://github.com/ljharb/is-bigint#readme,Approved
Yarn,is-boolean-object,1.1.0,MIT,Unknown,Approved
Yarn,is-callable,1.2.3,MIT,http://ljharb.codes,Approved
Yarn,is-callable,1.2.4,MIT,http://ljharb.codes,Approved
Yarn,is-color-stop,1.1.0,MIT,https://github.com/pigcan/is-color-stop#readme,Approved
Yarn,is-core-module,2.8.1,MIT,https://github.com/inspect-js/is-core-module,Approved
Yarn,is-date-object,1.0.2,MIT,Unknown,Approved
Yarn,is-directory,0.3.1,MIT,https://github.com/jonschlinkert/is-directory,Approved
Yarn,is-extglob,2.1.1,MIT,https://github.com/jonschlinkert/is-extglob,Approved
Yarn,is-glob,4.0.1,MIT,https://github.com/micromatch/is-glob,Approved
Yarn,is-negative-zero,2.0.1,MIT,https://github.com/inspect-js/is-negative-zero,Approved
Yarn,is-number,7.0.0,MIT,https://github.com/jonschlinkert/is-number,Approved
Yarn,is-number-object,1.0.4,MIT,Unknown,Approved
Yarn,is-obj,2.0.0,MIT,sindresorhus.com,Approved
Yarn,is-plain-object,5.0.0,MIT,https://github.com/jonschlinkert/is-plain-object,Approved
Yarn,is-regex,1.1.3,MIT,https://github.com/inspect-js/is-regex,Approved
Yarn,is-regex,1.1.4,MIT,https://github.com/inspect-js/is-regex,Approved
Yarn,is-resolvable,1.1.0,ISC,https://github.com/shinnn,Approved
Yarn,is-string,1.0.6,MIT,Unknown,Approved
Yarn,is-shared-array-buffer,1.0.1,MIT,https://github.com/inspect-js/is-shared-array-buffer#readme,Approved
Yarn,is-string,1.0.7,MIT,Unknown,Approved
Yarn,is-symbol,1.0.3,MIT,Unknown,Approved
Yarn,is-weakref,1.0.2,MIT,https://github.com/inspect-js/is-weakref#readme,Approved
Yarn,isarray,0.0.1,MIT,https://github.com/juliangruber/isarray,Approved
Yarn,isomorphic-ws,4.0.1,MIT,https://github.com/heineiuo/isomorphic-ws#readme,Approved
Yarn,iterall,1.3.0,MIT,https://github.com/leebyron/iterall,Approved
Yarn,iterare,1.2.1,ISC,Unknown,Approved
Yarn,jest-worker,27.5.1,MIT,Unknown,Approved
Yarn,js-cookie,2.2.1,MIT,Unknown,Approved
@ -696,12 +790,14 @@ Go,k8s.io/kube-openapi,v0.0.0-20220124234850-424119656bbf,Apache 2.0,"",Approved
Go,k8s.io/utils,v0.0.0-20220127004650-9b3446523e65,"Apache 2.0,New BSD","",Approved
Yarn,keyv,4.0.0,MIT,https://github.com/lukechilds/keyv,Approved
Yarn,klona,2.0.4,MIT,https://lukeed.com,Approved
Go,layeh.com/gopher-luar,v1.0.10,Mozilla Public License 2.0,"",Approved
Yarn,lines-and-columns,1.1.6,MIT,https://github.com/eventualbuddha/lines-and-columns#readme,Approved
Yarn,linguist-languages,7.14.0,MIT,https://github.com/ikatyang/linguist-languages#readme,Approved
Yarn,linkify-it,2.0.3,MIT,Unknown,Approved
Yarn,linkify-it,3.0.3,MIT,Unknown,Approved
Yarn,loader-runner,4.2.0,MIT,https://github.com/webpack/loader-runner#readme,Approved
Yarn,lodash,4.17.21,MIT,https://lodash.com/,Approved
Yarn,lodash.debounce,4.0.8,MIT,https://lodash.com/,Approved
Yarn,lodash.get,4.4.2,MIT,https://lodash.com/,Approved
Yarn,lodash.isequal,4.5.0,MIT,https://lodash.com/,Approved
Yarn,lodash.memoize,4.1.2,MIT,https://lodash.com/,Approved
Yarn,lodash.throttle,4.1.1,MIT,https://lodash.com/,Approved
@ -709,7 +805,9 @@ Yarn,lodash.uniq,4.5.0,MIT,https://lodash.com/,Approved
Yarn,loose-envify,1.4.0,MIT,https://github.com/zertosh/loose-envify,Approved
Yarn,lowercase-keys,2.0.0,MIT,sindresorhus.com,Approved
Yarn,lru-cache,6.0.0,ISC,Unknown,Approved
Yarn,markdown-it,10.0.0,MIT,Unknown,Approved
Yarn,lru-cache,7.8.0,ISC,Unknown,Approved
Yarn,make-error,1.3.6,ISC,https://github.com/JsCommunity/make-error,Approved
Yarn,markdown-it,12.3.2,MIT,Unknown,Approved
Yarn,marked,4.0.0,MIT,https://marked.js.org/,Approved
Yarn,math-expression-evaluator,1.2.17,MIT,https://github.com/redhivesoftware/math-expression-evaluator#readme,Approved
Yarn,mdi-react,8.1.0,(MIT AND OFL-1.1),https://github.com/levrik/mdi-react,Approved
@ -718,12 +816,16 @@ Yarn,mdn-data,2.0.4,CC0-1.0,https://developer.mozilla.org/,Approved
Yarn,mdurl,1.0.1,MIT,Unknown,Approved
Yarn,memoize-one,5.0.4,MIT,Unknown,Approved
Yarn,merge-stream,2.0.0,MIT,Unknown,Approved
Yarn,merge2,1.4.1,MIT,https://github.com/teambition/merge2,Approved
Yarn,meros,1.2.0,MIT,https://marais.io,Approved
Yarn,micromatch,4.0.4,MIT,https://github.com/micromatch/micromatch,Approved
Yarn,mime-db,1.49.0,MIT,Unknown,Approved
Yarn,mime-types,2.1.32,MIT,Unknown,Approved
Yarn,mimic-response,1.0.1,MIT,sindresorhus.com,Approved
Yarn,mimic-response,3.1.0,MIT,https://sindresorhus.com,Approved
Yarn,mini-create-react-context,0.4.0,MIT,Unknown,Approved
Yarn,minimatch,3.0.4,ISC,http://blog.izs.me,Approved
Yarn,minimatch,4.2.1,ISC,http://blog.izs.me,Approved
Yarn,minimist,1.2.5,MIT,https://github.com/substack/minimist,Approved
Yarn,mitt,2.1.0,MIT,https://github.com/developit/mitt,Approved
Yarn,mkdirp,0.5.5,MIT,http://substack.net,Approved
@ -732,22 +834,25 @@ Yarn,monaco-yaml,3.2.1,MIT,https://monaco-yaml.js.org/,Approved
Yarn,nanoid,3.2.0,MIT,Unknown,Approved
Yarn,neo-async,2.6.2,MIT,https://github.com/suguru03/neo-async,Approved
Yarn,nice-ticks,1.0.1,ISC,https://github.com/cenfun/nice-ticks#readme,Approved
Yarn,node-fetch,2.6.1,MIT,https://github.com/bitinn/node-fetch,Approved
Yarn,node-domexception,1.0.0,MIT,https://github.com/jimmywarting/node-domexception#readme,Approved
Yarn,node-fetch,2.6.7,MIT,https://github.com/bitinn/node-fetch,Approved
Yarn,node-releases,2.0.2,MIT,Unknown,Approved
Yarn,normalize-path,2.1.1,MIT,https://github.com/jonschlinkert/normalize-path,Approved
Yarn,normalize-url,3.3.0,MIT,sindresorhus.com,Approved
Yarn,normalize-url,4.3.0,MIT,sindresorhus.com,Approved
Yarn,nth-check,1.0.2,Simplified BSD,https://github.com/fb55/nth-check,Approved
Yarn,nullthrows,1.1.1,MIT,Unknown,Approved
Yarn,object-assign,4.1.1,MIT,sindresorhus.com,Approved
Yarn,object-inspect,1.10.3,MIT,https://github.com/inspect-js/object-inspect,Approved
Yarn,object-inspect,1.12.0,MIT,https://github.com/inspect-js/object-inspect,Approved
Yarn,object-is,1.1.5,MIT,https://github.com/es-shims/object-is,Approved
Yarn,object-keys,1.1.1,MIT,http://ljharb.codes,Approved
Yarn,object.assign,4.1.2,MIT,Unknown,Approved
Yarn,object.getownpropertydescriptors,2.1.2,MIT,Unknown,Approved
Yarn,object.getownpropertydescriptors,2.1.3,MIT,Unknown,Approved
Yarn,object.values,1.1.1,MIT,Unknown,Approved
Yarn,once,1.4.0,ISC,http://blog.izs.me/,Approved
Yarn,open-color,1.8.0,MIT,https://github.com/yeun/open-color,Approved
Yarn,optimism,0.16.1,MIT,https://github.com/benjamn/optimism#readme,Approved
Yarn,original,1.0.2,MIT,Unknown,Approved
Yarn,p-cancelable,2.0.0,MIT,sindresorhus.com,Approved
Yarn,p-limit,3.1.0,MIT,https://sindresorhus.com,Approved
Yarn,parent-module,1.0.1,MIT,sindresorhus.com,Approved
@ -759,10 +864,12 @@ Yarn,path-parse,1.0.7,MIT,https://github.com/jbgutierrez/path-parse#readme,Appro
Yarn,path-to-regexp,1.7.0,MIT,Unknown,Approved
Yarn,path-type,4.0.0,MIT,sindresorhus.com,Approved
Yarn,performance-now,2.1.0,MIT,https://github.com/braveg1rl/performance-now,Approved
Yarn,picocolors,0.2.1,ISC,Unknown,Approved
Yarn,picocolors,1.0.0,ISC,Unknown,Approved
Yarn,picomatch,2.3.1,MIT,https://github.com/micromatch/picomatch,Approved
Yarn,popper.js,1.15.0,MIT,https://popper.js.org/,Approved
Yarn,postcss,6.0.1,MIT,http://postcss.org/,Approved
Yarn,postcss,7.0.36,MIT,https://postcss.org/,Approved
Yarn,postcss,7.0.39,MIT,https://postcss.org/,Approved
Yarn,postcss,8.4.5,MIT,https://postcss.org/,Approved
Yarn,postcss-calc,7.0.5,MIT,Unknown,Approved
Yarn,postcss-colormin,4.0.3,MIT,https://github.com/cssnano/cssnano,Approved
@ -802,13 +909,14 @@ Yarn,prop-types,15.7.2,MIT,https://facebook.github.io/react/,Approved
Yarn,pump,3.0.0,MIT,Unknown,Approved
Yarn,punycode,2.1.1,MIT,https://mths.be/punycode,Approved
Yarn,q,1.5.1,MIT,https://github.com/kriskowal/q,Approved
Yarn,querystringify,2.2.0,MIT,https://github.com/unshiftio/querystringify,Approved
Yarn,quick-lru,5.1.1,MIT,https://sindresorhus.com,Approved
Yarn,raf,3.4.1,MIT,Unknown,Approved
Yarn,randombytes,2.1.0,MIT,https://github.com/crypto-browserify/randombytes,Approved
Yarn,react,16.14.0,MIT,https://reactjs.org/,Approved
Yarn,react,17.0.2,MIT,https://reactjs.org/,Approved
Yarn,react-circular-progressbar,2.0.3,MIT,Unknown,Approved
Yarn,react-clientside-effect,1.2.5,MIT,https://github.com/thekashey/react-clientside-effect,Approved
Yarn,react-dom,16.14.0,MIT,https://reactjs.org/,Approved
Yarn,react-dom,17.0.2,MIT,https://reactjs.org/,Approved
Yarn,react-dom-confetti,0.1.4,MIT,Unknown,Approved
Yarn,react-draggable,4.4.3,MIT,https://github.com/mzabriskie/react-draggable,Approved
Yarn,react-elm-components,1.1.0,New BSD,https://github.com/evancz/react-elm,Approved
@ -835,6 +943,7 @@ Yarn,react-transition-group,4.4.1,New BSD,https://github.com/reactjs/react-trans
Yarn,react-use-measure,2.0.4,MIT,Unknown,Approved
Yarn,react-visibility-sensor,5.1.1,MIT,Unknown,Approved
Yarn,reactstrap,8.9.0,MIT,https://github.com/reactstrap/reactstrap#readme,Approved
Yarn,readable-stream,3.6.0,MIT,Unknown,Approved
Yarn,recharts,1.8.5,MIT,https://github.com/recharts/recharts,Approved
Yarn,recharts-scale,0.4.2,MIT,https://github.com/recharts/recharts-scale,Approved
Yarn,reduce-css-calc,1.3.0,MIT,Unknown,Approved
@ -842,59 +951,69 @@ Yarn,reduce-function-call,1.0.3,MIT,Unknown,Approved
Yarn,regenerator-runtime,0.13.7,MIT,Unknown,Approved
Yarn,regexp.prototype.flags,1.3.1,MIT,Unknown,Approved
Yarn,regexpp,3.1.0,MIT,https://github.com/mysticatea/regexpp#readme,Approved
Yarn,remove-trailing-separator,1.1.0,ISC,https://github.com/darsain/remove-trailing-separator#readme,Approved
Yarn,require-from-string,2.0.2,MIT,github.com/floatdrop,Approved
Yarn,requireindex,1.1.0,MIT,http://person.sh,Approved
Yarn,requires-port,1.0.0,MIT,https://github.com/unshiftio/requires-port,Approved
Yarn,resize-observer-polyfill,1.5.1,MIT,https://github.com/que-etc/resize-observer-polyfill,Approved
Yarn,resolve,1.22.0,MIT,http://substack.net,Approved
Yarn,resolve-alpn,1.0.0,MIT,https://github.com/szmarczak/resolve-alpn#readme,Approved
Yarn,resolve-from,3.0.0,MIT,sindresorhus.com,Approved
Yarn,resolve-from,4.0.0,MIT,sindresorhus.com,Approved
Yarn,resolve-from,5.0.0,MIT,sindresorhus.com,Approved
Yarn,resolve-pathname,2.2.0,MIT,Unknown,Approved
Yarn,responselike,2.0.0,MIT,Unknown,Approved
Yarn,reusify,1.0.4,MIT,https://github.com/mcollina/reusify#readme,Approved
Yarn,rgb-regex,1.0.1,MIT,https://github.com/regexps/rgb-regex,Approved
Yarn,rgba-regex,1.0.0,MIT,https://github.com/johnotander/rgba-regex,Approved
Yarn,run-parallel,1.1.9,MIT,https://github.com/feross/run-parallel,Approved
Yarn,rxjs,6.6.3,Apache 2.0,https://github.com/ReactiveX/RxJS,Approved
Yarn,safe-buffer,5.1.2,MIT,https://github.com/feross/safe-buffer,Approved
Yarn,sanitize-html,2.3.3,MIT,Unknown,Approved
Yarn,sax,1.2.4,ISC,http://blog.izs.me/,Approved
Yarn,scheduler,0.19.1,MIT,https://reactjs.org/,Approved
Yarn,scheduler,0.20.2,MIT,https://reactjs.org/,Approved
Yarn,schema-utils,3.1.0,MIT,https://github.com/webpack/schema-utils,Approved
Yarn,semver,7.3.5,ISC,Unknown,Approved
Yarn,serialize-javascript,6.0.0,New BSD,https://github.com/yahoo/serialize-javascript,Approved
Yarn,shepherd.js,8.3.1,MIT,https://shepherdjs.dev/,Approved
Yarn,side-channel,1.0.4,MIT,https://github.com/ljharb/side-channel#readme,Approved
Go,sigs.k8s.io/json,v0.0.0-20211208200746-9f7c6b3444d2,Apache 2.0,"",Approved
Go,sigs.k8s.io/kustomize/kyaml,v0.13.3,"Apache 2.0,MIT","",Approved
Go,sigs.k8s.io/structured-merge-diff/v4,v4.2.1,Apache 2.0,"",Approved
Go,sigs.k8s.io/yaml,v1.3.0,MIT,"",Approved
Yarn,simple-swizzle,0.2.2,MIT,http://github.com/qix-,Approved
Yarn,slash,3.0.0,MIT,sindresorhus.com,Approved
Yarn,smoothscroll-polyfill,0.4.4,MIT,https://iamdustan.com/smoothscroll,Approved
Yarn,source-list-map,2.0.1,MIT,https://github.com/webpack/source-list-map,Approved
Yarn,source-map,0.5.7,New BSD,https://github.com/mozilla/source-map,Approved
Yarn,source-map,0.6.1,New BSD,https://github.com/mozilla/source-map,Approved
Yarn,source-map,0.7.3,New BSD,https://github.com/mozilla/source-map,Approved
Yarn,source-map-js,1.0.2,New BSD,https://github.com/7rulnik/source-map-js,Approved
Yarn,source-map-support,0.5.19,MIT,Unknown,Approved
Yarn,sourcegraph,25.5.0,Apache 2.0,https://github.com/sourcegraph/sourcegraph,Approved
Yarn,sourcegraph-preview,0.0.2,Apache 2.0,Unknown,Approved
Yarn,sprintf-js,1.0.3,New BSD,http://alexei.ro/,Approved
Yarn,stable,0.1.8,MIT,Unknown,Approved
Yarn,stream-http,3.2.0,MIT,https://github.com/jhiesey/stream-http#readme,Approved
Yarn,string-env-interpolation,1.0.1,MIT,Unknown,Approved
Yarn,string-score,1.0.1,MIT,https://github.com/KenPowers/string-score,Approved
Yarn,string.prototype.trimend,1.0.4,MIT,Unknown,Approved
Yarn,string.prototype.trimstart,1.0.4,MIT,Unknown,Approved
Yarn,string_decoder,1.1.1,MIT,https://github.com/nodejs/string_decoder,Approved
Yarn,strip-ansi,3.0.1,MIT,sindresorhus.com,Approved
Yarn,style-mod,4.0.0,MIT,Unknown,Approved
Yarn,stylehacks,4.0.3,MIT,https://github.com/cssnano/cssnano,Approved
Yarn,stylis,4.0.13,MIT,https://github.com/thysultan/stylis.js,Approved
Yarn,subscriptions-transport-ws,0.11.0,MIT,Unknown,Approved
Yarn,supports-color,2.0.0,MIT,sindresorhus.com,Approved
Yarn,supports-color,3.2.3,MIT,sindresorhus.com,Approved
Yarn,supports-color,5.5.0,MIT,sindresorhus.com,Approved
Yarn,supports-color,6.1.0,MIT,sindresorhus.com,Approved
Yarn,supports-color,8.1.1,MIT,https://sindresorhus.com,Approved
Yarn,supports-preserve-symlinks-flag,1.0.0,MIT,https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme,Approved
Yarn,svgo,1.3.2,MIT,https://github.com/svg/svgo,Approved
Yarn,symbol-observable,1.2.0,MIT,Unknown,Approved
Yarn,symbol-observable,4.0.0,MIT,Unknown,Approved
Yarn,sync-fetch,0.3.1,MIT,https://github.com/larsgw/sync-fetch#readme,Approved
Yarn,tabbable,4.0.0,MIT,https://github.com/davidtheclark/tabbable#readme,Approved
Yarn,tabbable,5.1.5,MIT,https://github.com/focus-trap/tabbable#readme,Approved
Yarn,tabbable,5.2.1,MIT,https://github.com/focus-trap/tabbable#readme,Approved
Yarn,tagged-template-noop,2.1.1,MIT,https://github.com/lleaff/tagged-template-noop#readme,Approved
Yarn,tapable,2.2.0,MIT,https://github.com/webpack/tapable,Approved
Yarn,terser,5.7.1,Simplified BSD,https://terser.org/,Approved
@ -904,17 +1023,23 @@ Yarn,timsort,0.3.0,MIT,https://github.com/mziccard/node-timsort,Approved
Yarn,tiny-invariant,1.0.3,MIT,Unknown,Approved
Yarn,tiny-warning,1.0.3,MIT,Unknown,Approved
Yarn,to-fast-properties,2.0.0,MIT,sindresorhus.com,Approved
Yarn,to-regex-range,5.0.1,MIT,https://github.com/micromatch/to-regex-range,Approved
Yarn,toggle-selection,1.0.6,MIT,sudodoki.name,Approved
Yarn,tr46,0.0.3,MIT,https://github.com/Sebmaster/tr46.js#readme,Approved
Yarn,ts-invariant,0.9.4,MIT,https://github.com/apollographql/invariant-packages,Approved
Yarn,ts-key-enum,2.0.8,MIT,https://gitlab.com/nfriend/ts-key-enum#readme,Approved
Yarn,ts-node,9.1.1,MIT,https://github.com/TypeStrong/ts-node,Approved
Yarn,tslib,2.1.0,BSD Zero Clause License,https://www.typescriptlang.org/,Approved
Yarn,typed-styles,0.0.7,MIT,Unknown,Approved
Yarn,uc.micro,1.0.5,MIT,Unknown,Approved
Yarn,unbox-primitive,1.0.1,MIT,https://github.com/ljharb/unbox-primitive#readme,Approved
Yarn,undici,4.16.0,MIT,https://undici.nodejs.org/,Approved
Yarn,uniq,1.0.1,MIT,Unknown,Approved
Yarn,uniqs,2.0.0,MIT,Unknown,Approved
Yarn,unixify,1.0.0,MIT,https://github.com/jonschlinkert/unixify,Approved
Yarn,unquote,1.1.1,MIT,https://github.com/lakenen/node-unquote,Approved
Yarn,uri-js,4.4.1,Simplified BSD,https://github.com/garycourt/uri-js,Approved
Yarn,url-parse,1.5.4,MIT,Unknown,Approved
Yarn,use-callback-ref,1.2.5,MIT,Unknown,Approved
Yarn,use-deep-compare-effect,1.6.1,MIT,https://github.com/kentcdodds/use-deep-compare-effect#readme,Approved
Yarn,use-resize-observer,7.0.0,MIT,Unknown,Approved
@ -924,24 +1049,33 @@ Yarn,util.promisify,1.0.0,MIT,https://github.com/ljharb/util.promisify#readme,Ap
Yarn,utility-types,3.10.0,MIT,https://github.com/piotrwitek/utility-types,Approved
Yarn,uuid,8.3.2,MIT,Unknown,Approved
Yarn,value-equal,0.2.1,MIT,Unknown,Approved
Yarn,value-or-promise,1.0.11,MIT,Unknown,Approved
Yarn,vendors,1.0.4,MIT,https://wooorm.com,Approved
Yarn,vscode-languageserver-textdocument,1.0.2,MIT,Unknown,Approved
Yarn,vscode-languageserver-types,3.15.1,MIT,Unknown,Approved
Yarn,w3c-keyname,2.2.4,MIT,https://github.com/marijnh/w3c-keyname#readme,Approved
Yarn,warning,3.0.0,New BSD,https://github.com/BerkeleyTrue/warning,Approved
Yarn,warning,4.0.3,MIT,https://github.com/BerkeleyTrue/warning,Approved
Yarn,watchpack,2.2.0,MIT,https://github.com/webpack/watchpack,Approved
Yarn,watchpack,2.3.1,MIT,https://github.com/webpack/watchpack,Approved
Yarn,web-streams-polyfill,3.2.0,MIT,https://github.com/MattiasBuelens/web-streams-polyfill#readme,Approved
Yarn,web-streams-polyfill,4.0.0-beta.1,MIT,https://github.com/MattiasBuelens/web-streams-polyfill#readme,Approved
Yarn,webext-additional-permissions,1.0.0,MIT,bfred.it,Approved
Yarn,webext-domain-permission-toggle,1.0.1,MIT,bfred.it,Approved
Yarn,webextension-polyfill,0.6.0,Mozilla Public License 2.0,https://github.com/mozilla/webextension-polyfill,Approved
Yarn,webpack,5.45.1,MIT,https://github.com/webpack/webpack,Approved
Yarn,webpack-sources,2.3.0,MIT,https://github.com/webpack/webpack-sources#readme,Approved
Yarn,webidl-conversions,3.0.1,Simplified BSD,https://domenic.me/,Approved
Yarn,webpack,5.70.0,MIT,https://github.com/webpack/webpack,Approved
Yarn,webpack-sources,3.2.3,MIT,https://github.com/webpack/webpack-sources#readme,Approved
Yarn,whatwg-url,5.0.0,MIT,Unknown,Approved
Yarn,which-boxed-primitive,1.0.2,MIT,https://github.com/inspect-js/which-boxed-primitive#readme,Approved
Yarn,wrappy,1.0.2,ISC,https://github.com/npm/wrappy,Approved
Yarn,ws,7.5.7,MIT,https://github.com/websockets/ws,Approved
Yarn,ws,8.5.0,MIT,https://github.com/websockets/ws,Approved
Yarn,xtend,4.0.2,MIT,https://github.com/Raynos/xtend,Approved
Yarn,yallist,4.0.0,ISC,http://blog.izs.me/,Approved
Yarn,yaml,1.10.0,ISC,https://eemeli.org/yaml/,Approved
Yarn,yaml-ast-parser,0.0.43,Apache 2.0,https://github.com/mulesoft-labs/yaml-ast-parser,Approved
Yarn,yaml-language-server-parser,0.1.3,Apache 2.0,https://github.com/redhat-developer/yaml-ast-parser,Approved
Yarn,yn,3.1.1,MIT,sindresorhus.com,Approved
Yarn,yocto-queue,0.1.0,MIT,https://sindresorhus.com,Approved
Yarn,zen-observable,0.8.15,MIT,https://github.com/zenparsing/zen-observable,Approved
Yarn,zen-observable-ts,1.2.3,MIT,Unknown,Approved

1 package_manager name version licenses homepage approved
9 Yarn @babel/runtime 7.17.2 MIT https://babel.dev/docs/en/next/babel-runtime Approved
10 Yarn @babel/types 7.17.0 MIT https://babel.dev/docs/en/next/babel-types Approved
11 Yarn @codemirror/autocomplete 0.19.14 MIT http://marijnhaverbeke.nl Approved
12 Yarn @codemirror/commands 0.19.8 MIT http://marijnhaverbeke.nl Approved
13 Yarn @codemirror/gutter 0.19.9 MIT http://marijnhaverbeke.nl Approved
14 Yarn @codemirror/highlight 0.19.7 MIT http://marijnhaverbeke.nl Approved
15 Yarn @codemirror/history 0.19.2 MIT http://marijnhaverbeke.nl Approved
16 Yarn @codemirror/lang-css 0.19.3 MIT http://marijnhaverbeke.nl Approved
17 Yarn @codemirror/lang-html 0.19.4 MIT http://marijnhaverbeke.nl Approved
18 Yarn @codemirror/lang-javascript 0.19.7 MIT http://marijnhaverbeke.nl Approved
19 Yarn @codemirror/lang-markdown 0.19.6 MIT http://marijnhaverbeke.nl Approved
20 Yarn @codemirror/language 0.19.8 MIT http://marijnhaverbeke.nl Approved
21 Yarn @codemirror/rangeset @codemirror/lint 0.19.8 0.19.6 MIT http://marijnhaverbeke.nl Approved
22 Yarn @codemirror/matchbrackets 0.19.4 MIT http://marijnhaverbeke.nl Approved
23 Yarn @codemirror/panel 0.19.1 MIT http://marijnhaverbeke.nl Approved
24 Yarn @codemirror/rangeset 0.19.9 MIT http://marijnhaverbeke.nl Approved
25 Yarn @codemirror/state 0.19.9 MIT http://marijnhaverbeke.nl Approved
26 Yarn @codemirror/stream-parser 0.19.8 MIT http://marijnhaverbeke.nl Approved
27 Yarn @codemirror/text 0.19.6 MIT http://marijnhaverbeke.nl Approved
28 Yarn @codemirror/tooltip 0.19.16 MIT http://marijnhaverbeke.nl Approved
29 Yarn @codemirror/view 0.19.47 MIT http://marijnhaverbeke.nl Approved
37 Yarn @emotion/unitless 0.7.5 MIT Unknown Approved
38 Yarn @emotion/utils 1.1.0 MIT Unknown Approved
39 Yarn @emotion/weak-memoize 0.2.5 MIT Unknown Approved
40 Yarn @endemolshinegroup/cosmiconfig-typescript-loader 3.0.2 MIT https://github.com/EndemolShineGroup/cosmiconfig-typescript-loader Approved
41 Yarn @graphiql/toolkit 0.4.2 MIT http://github.com/graphql/graphiql/tree/master/packages/graphiql-toolkit#readme Approved
42 Yarn @graphql-tools/batch-execute 8.4.1 MIT Unknown Approved
43 Yarn @graphql-tools/delegate 8.7.0 MIT Unknown Approved
44 Yarn @graphql-tools/graphql-file-loader 7.3.7 MIT Unknown Approved
45 Yarn @graphql-tools/import 6.6.9 MIT Unknown Approved
46 Yarn @graphql-tools/json-file-loader 7.3.7 MIT Unknown Approved
47 Yarn @graphql-tools/load 7.5.5 MIT Unknown Approved
48 Yarn @graphql-tools/merge 8.2.6 MIT Unknown Approved
49 Yarn @graphql-tools/schema 8.3.5 MIT Unknown Approved
50 Yarn @graphql-tools/url-loader 7.9.7 MIT Unknown Approved
51 Yarn @graphql-tools/utils 8.6.5 MIT Unknown Approved
52 Yarn @graphql-tools/wrap 8.4.9 MIT Unknown Approved
53 Yarn @graphql-typed-document-node/core 3.1.0 MIT Unknown Approved
54 Yarn @iarna/toml 2.2.5 ISC https://github.com/iarna/iarna-toml#readme Approved
55 Yarn @juggle/resize-observer 3.3.1 Apache 2.0 https://juggle.studio/resize-observer/ Approved
56 Yarn @lezer/common 0.15.11 MIT Unknown Approved
57 Yarn @lezer/css 0.15.2 MIT Unknown Approved
58 Yarn @lezer/html 0.15.1 MIT Unknown Approved
59 Yarn @lezer/javascript 0.15.3 MIT Unknown Approved
60 Yarn @lezer/lr 0.15.8 MIT Unknown Approved
61 Yarn @lezer/markdown 0.15.6 MIT Unknown Approved
62 Yarn @microsoft/fast-element 1.7.0 MIT https://discord.gg/FcSNfg4 Approved
63 Yarn @microsoft/fast-foundation 2.32.2 MIT https://discord.gg/FcSNfg4 Approved
64 Yarn @microsoft/fast-react-wrapper 0.1.25 MIT https://discord.gg/FcSNfg4 Approved
65 Yarn @microsoft/fast-web-utilities 5.1.0 MIT https://discord.gg/FcSNfg4 Approved
66 Yarn @n1ru4l/graphql-live-query 0.9.0 MIT https://github.com/n1ru4l/graphql-live-queries#readme Approved
67 Yarn @n1ru4l/push-pull-async-iterable-iterator 3.2.0 MIT https://github.com/n1ru4l Approved
68 Yarn @nodelib/fs.scandir 2.1.3 MIT Unknown Approved
69 Yarn @nodelib/fs.stat 2.0.3 MIT Unknown Approved
70 Yarn @nodelib/fs.walk 1.2.4 MIT Unknown Approved
71 Yarn @popperjs/core 2.10.2 MIT Unknown Approved
72 Yarn @reach/accordion 0.16.1 MIT Unknown Approved
73 Yarn @reach/auto-id 0.16.0 MIT Unknown Approved
121 Yarn @sourcegraph/storybook 0.0.1 Apache 2.0 Unknown Approved
122 Yarn @sourcegraph/stylelint-plugin-sourcegraph 1.0.0 Apache 2.0 Unknown Approved
123 Yarn @sourcegraph/template-parser 0.0.1 Apache 2.0 Unknown Approved
124 Yarn @sourcegraph/vscode 2.2.1 Apache 2.0 Unknown Approved
125 Yarn @sourcegraph/web 1.10.1 Apache 2.0 Unknown Approved
126 Yarn @sourcegraph/wildcard 0.0.1 Apache 2.0 Unknown Approved
127 Yarn @sqs/jsonc-parser 1.0.3 MIT Unknown Approved
139 Yarn @types/d3-time 2.1.1 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-time Approved
140 Yarn @types/d3-voronoi 1.1.9 MIT Unknown Approved
141 Yarn @types/eslint 7.2.13 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint Approved
142 Yarn @types/eslint-scope 3.7.0 3.7.3 MIT Unknown https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope Approved
143 Yarn @types/estree 0.0.50 0.0.51 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree Approved
144 Yarn @types/filesystem 0.0.29 MIT Unknown Approved
145 Yarn @types/filewriter 0.0.28 MIT Unknown Approved
146 Yarn @types/har-format 1.2.4 MIT Unknown Approved
151 Yarn @types/node 14.14.41 MIT Unknown Approved
152 Yarn @types/parse-json 4.0.0 MIT Unknown Approved
153 Yarn @types/prop-types 15.5.6 MIT Unknown Approved
154 Yarn @types/q 1.5.4 1.5.5 MIT Unknown https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/q Approved
155 Yarn @types/react 17.0.0 17.0.43 MIT Unknown https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react Approved
156 Yarn @types/react-dom 16.9.8 17.0.14 MIT Unknown https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom Approved
157 Yarn @types/react-transition-group 4.4.4 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-transition-group Approved
158 Yarn @types/responselike 1.0.0 MIT Unknown Approved
159 Yarn @types/scheduler 0.16.2 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler Approved
160 Yarn @types/svgo 2.6.0 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/svgo Approved
161 Yarn @types/vscode 1.63.1 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vscode Approved
162 Yarn @types/websocket 1.0.5 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/websocket Approved
163 Yarn @types/ws 8.5.3 MIT https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws Approved
164 Yarn @visx/annotation 1.7.2 MIT https://github.com/airbnb/visx#readme Approved
165 Yarn @visx/annotation 2.9.0 MIT https://github.com/airbnb/visx#readme Approved
166 Yarn @visx/axis 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
167 Yarn @visx/axis 2.6.0 MIT https://github.com/airbnb/visx#readme Approved
168 Yarn @visx/bounds 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
169 Yarn @visx/curve 1.7.0 MIT Unknown Approved
170 Yarn @visx/curve 2.1.0 MIT Unknown Approved
174 Yarn @visx/event 2.6.0 MIT https://github.com/airbnb/visx#readme Approved
175 Yarn @visx/glyph 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
176 Yarn @visx/grid 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
177 Yarn @visx/grid 2.6.0 MIT https://github.com/airbnb/visx#readme Approved
178 Yarn @visx/group 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
179 Yarn @visx/group 2.1.0 MIT https://github.com/airbnb/visx#readme Approved
180 Yarn @visx/mock-data 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
183 Yarn @visx/point 2.6.0 MIT Unknown Approved
184 Yarn @visx/react-spring 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
185 Yarn @visx/responsive 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
186 Yarn @visx/responsive 2.8.0 MIT https://github.com/airbnb/visx#readme Approved
187 Yarn @visx/scale 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
188 Yarn @visx/scale 2.2.2 MIT https://github.com/airbnb/visx#readme Approved
189 Yarn @visx/shape 1.7.0 MIT Unknown Approved
193 Yarn @visx/tooltip 1.7.2 MIT https://github.com/airbnb/visx#readme Approved
194 Yarn @visx/voronoi 1.7.0 MIT https://github.com/airbnb/visx#readme Approved
195 Yarn @visx/xychart 1.7.3 MIT https://github.com/airbnb/visx#readme Approved
196 Yarn @vscode/codicons 0.0.29 CC-BY-4.0 Unknown Approved
197 Yarn @vscode/webview-ui-toolkit 0.9.0 MIT https://github.com/microsoft/vscode-webview-ui-toolkit#readme Approved
198 Yarn @webassemblyjs/ast 1.11.1 MIT Unknown Approved
199 Yarn @webassemblyjs/floating-point-hex-parser 1.11.1 MIT Unknown Approved
200 Yarn @webassemblyjs/helper-api-error 1.11.1 MIT Unknown Approved
216 Yarn @xstate/fsm 1.4.0 MIT https://github.com/davidkpiano/xstate/tree/master/packages/xstate-fsm#readme Approved
217 Yarn @xtuc/ieee754 1.2.0 New BSD http://feross.org Approved
218 Yarn @xtuc/long 4.2.2 Apache 2.0 Unknown Approved
219 Yarn abort-controller 3.0.0 MIT https://github.com/mysticatea/abort-controller#readme Approved
220 Yarn acorn 8.6.0 MIT https://github.com/acornjs/acorn Approved
221 Yarn acorn-import-assertions 1.8.0 MIT Unknown Approved
222 Yarn ajv 6.12.6 MIT https://github.com/ajv-validator/ajv Approved
223 Yarn ajv 8.6.3 MIT https://ajv.js.org/ Approved
224 Yarn ajv-formats 2.1.1 MIT https://github.com/ajv-validator/ajv-formats#readme Approved
228 Yarn ansi-styles 2.2.1 MIT sindresorhus.com Approved
229 Yarn ansi-styles 3.2.1 MIT sindresorhus.com Approved
230 Yarn apollo3-cache-persist 0.12.1 MIT https://github.com/apollographql/apollo-cache-persist#readme Approved
231 Yarn arg 4.1.0 MIT Unknown Approved
232 Yarn argparse 1.0.10 MIT Unknown Approved
233 Yarn argparse 2.0.1 Python-2.0 Unknown Approved
234 Yarn array-union 2.1.0 MIT sindresorhus.com Approved
235 Yarn babel-plugin-macros 2.8.0 MIT https://github.com/kentcdodds/babel-plugin-macros#readme Approved
236 Yarn backo2 1.0.2 MIT Unknown Approved
237 Yarn balanced-match 0.4.2 MIT https://github.com/juliangruber/balanced-match Approved
238 Yarn balanced-match 1.0.0 MIT https://github.com/juliangruber/balanced-match Approved
239 Yarn base64-js 1.5.1 MIT https://github.com/beatgammit/base64-js Approved
240 Yarn bloomfilter 0.0.18 New BSD https://github.com/jasondavies/bloomfilter.js Approved
241 Yarn boolbase 1.0.0 ISC https://github.com/fb55/boolbase Approved
242 Yarn bootstrap 4.5.2 MIT https://getbootstrap.com/ Approved
243 Yarn brace-expansion 1.1.11 MIT https://github.com/juliangruber/brace-expansion Approved
244 Yarn braces 3.0.2 MIT https://github.com/micromatch/braces Approved
245 Yarn browserslist 4.19.3 MIT Unknown Approved
246 Yarn buffer 5.7.1 MIT https://github.com/feross/buffer Approved
247 Yarn buffer-from 1.1.1 MIT Unknown Approved
248 Yarn builtin-status-codes 3.0.0 MIT bendrucker.me Approved
249 Yarn cacheable-lookup 5.0.3 MIT https://github.com/szmarczak/cacheable-lookup#readme Approved
250 Yarn cacheable-request 7.0.1 MIT http://lukechilds.co.uk Approved
251 Yarn call-bind 1.0.2 MIT https://github.com/ljharb/call-bind#readme Approved
261 Yarn classnames 2.3.1 MIT Unknown Approved
262 Yarn clone-response 1.0.2 MIT https://github.com/lukechilds/clone-response Approved
263 Go cloud.google.com/go v0.100.2 Apache 2.0,New BSD Approved
264 Go cloud.google.com/go/compute v1.1.0 v1.5.0 Apache 2.0 Approved
265 Go cloud.google.com/go/iam v0.1.1 Apache 2.0 Approved
266 Go cloud.google.com/go/kms v1.1.0 Apache 2.0 Approved
267 Go cloud.google.com/go/monitoring v1.2.0 Apache 2.0 Approved
268 Go cloud.google.com/go/profiler v0.1.2 v0.2.0 Apache 2.0 Approved
269 Go cloud.google.com/go/pubsub v1.17.1 Apache 2.0 Approved
270 Go cloud.google.com/go/storage v1.19.0 Apache 2.0 Approved
271 Yarn coa 2.0.2 MIT http://github.com/veged/coa Approved
272 Yarn codemirror 5.58.3 5.65.2 MIT https://codemirror.net/ Approved
273 Yarn codemirror-graphql 0.15.2 1.2.14 MIT https://github.com/graphql/graphiql/tree/main/packages/codemirror-graphql#readme Approved
274 Yarn color 3.0.0 3.2.1 MIT Unknown Approved
275 Yarn color-convert 1.9.3 MIT Unknown Approved
276 Yarn color-name 1.1.3 MIT https://github.com/dfcreative/color-name Approved
277 Yarn color-name 1.1.4 MIT https://github.com/colorjs/color-name Approved
278 Yarn color-string 1.5.5 1.9.0 MIT Unknown Approved
279 Yarn comlink 4.3.0 Apache 2.0 Unknown Approved
280 Yarn commander 2.20.3 MIT Unknown Approved
281 Yarn compute-scroll-into-view 1.0.17 MIT https://scroll-into-view-if-needed.netlify.com/ Approved
286 Yarn core-js 3.10.0 MIT Unknown Approved
287 Yarn cosmiconfig 5.2.1 MIT https://github.com/davidtheclark/cosmiconfig#readme Approved
288 Yarn cosmiconfig 6.0.0 MIT https://github.com/davidtheclark/cosmiconfig#readme Approved
289 Yarn cosmiconfig 7.0.1 MIT https://github.com/davidtheclark/cosmiconfig#readme Approved
290 Yarn cosmiconfig-toml-loader 1.0.0 MIT https://github.com/danielrearden/cosmiconfig-toml-loader#readme Approved
291 Yarn create-react-class 15.7.0 MIT https://facebook.github.io/react/ Approved
292 Yarn create-react-context 0.3.0 MIT Unknown Approved
293 Yarn cross-fetch create-require 3.1.4 1.1.1 MIT https://github.com/lquixada/cross-fetch Unknown Approved
294 Yarn crelt 1.0.5 MIT https://github.com/marijnh/crelt#readme Approved
295 Yarn cross-fetch 3.1.5 MIT https://github.com/lquixada/cross-fetch Approved
296 Yarn cross-undici-fetch 0.1.27 MIT Unknown Approved
297 Yarn css-color-names 0.0.4 MIT http://www.daveeddy.com Approved
298 Yarn css-declaration-sorter 4.0.1 MIT https://selwyn.cc/ Approved
299 Yarn css-select 2.1.0 Simplified BSD Unknown Approved
331 Yarn d3-time-format 2.1.3 New BSD https://d3js.org/d3-time-format/ Approved
332 Yarn d3-time-format 3.0.0 New BSD https://d3js.org/d3-time-format/ Approved
333 Yarn d3-voronoi 1.1.4 New BSD https://d3js.org/d3-voronoi/ Approved
334 Yarn dataloader 2.0.0 MIT https://github.com/graphql/dataloader Approved
335 Yarn date-fns 2.16.1 MIT Unknown Approved
336 Yarn debounce 1.2.0 MIT Unknown Approved
337 Yarn decimal.js-light 2.5.0 MIT Unknown Approved
343 Yarn delay 4.4.1 MIT https://sindresorhus.com Approved
344 Yarn dequal 2.0.2 MIT https://lukeed.com Approved
345 Yarn detect-node-es 1.1.0 MIT https://github.com/thekashey/detect-node Approved
346 Yarn diff 4.0.2 New BSD Unknown Approved
347 Yarn dir-glob 3.0.1 MIT github.com/kevva Approved
348 Yarn dom-confetti 0.1.1 MIT Unknown Approved
349 Yarn dom-helpers 3.4.0 MIT Unknown Approved
350 Yarn dom-helpers 5.2.0 MIT Unknown Approved
351 Yarn dom-serializer 0.1.1 MIT Unknown Approved
352 Yarn dom-serializer 1.3.1 1.3.2 MIT Unknown Approved
353 Yarn domelementtype 1.3.1 Simplified BSD Unknown Approved
354 Yarn domelementtype 2.2.0 Simplified BSD Unknown Approved
355 Yarn domhandler 4.2.0 Simplified BSD Unknown Approved
356 Yarn domutils 1.7.0 Simplified BSD Unknown Approved
357 Yarn domutils 2.7.0 2.8.0 Simplified BSD Unknown Approved
358 Yarn dot-prop 5.2.0 MIT sindresorhus.com Approved
359 Yarn downshift 3.4.8 MIT https://github.com/downshift-js/downshift#readme Approved
360 Yarn dset 3.1.1 MIT https://lukeed.com Approved
361 Yarn electron-to-chromium 1.4.71 ISC Unknown Approved
362 Yarn end-of-stream 1.4.4 MIT https://github.com/mafintosh/end-of-stream Approved
363 Yarn enhanced-resolve 5.8.3 5.9.2 MIT http://github.com/webpack/enhanced-resolve Approved
364 Yarn entities 1.1.2 Simplified BSD Unknown Approved
365 Yarn entities 2.0.0 2.1.0 Simplified BSD Unknown Approved
366 Yarn error-ex 1.3.2 MIT Unknown Approved
367 Yarn es-abstract 1.18.3 1.19.1 MIT http://ljharb.codes Approved
368 Yarn es-module-lexer 0.7.1 0.9.3 MIT https://github.com/guybedford/es-module-lexer#readme Approved
369 Yarn es-to-primitive 1.2.1 MIT Unknown Approved
370 Yarn escalade 3.1.1 MIT https://lukeed.com Approved
371 Yarn escape-html 1.0.3 MIT Unknown Approved
376 Yarn esrecurse 4.3.0 Simplified BSD https://github.com/estools/esrecurse Approved
377 Yarn estraverse 4.3.0 Simplified BSD https://github.com/estools/estraverse Approved
378 Yarn estraverse 5.2.0 Simplified BSD https://github.com/estools/estraverse Approved
379 Yarn event-target-shim 5.0.1 MIT https://github.com/mysticatea/event-target-shim Approved
380 Yarn eventemitter3 3.1.2 MIT Unknown Approved
381 Yarn events 3.3.0 MIT http://jeditoolkit.com Approved
382 Yarn eventsource 1.1.0 MIT http://github.com/EventSource/eventsource Approved
383 Yarn exenv-es6 1.0.0 MIT https://github.com/chrisdholt/exenv-es6#readme Approved
384 Yarn extract-files 11.0.0 MIT https://github.com/jaydenseric/extract-files#readme Approved
385 Yarn fast-deep-equal 3.1.3 MIT https://github.com/epoberezkin/fast-deep-equal#readme Approved
386 Yarn fast-glob 3.2.11 MIT https://mrmlnc.com Approved
387 Yarn fast-json-stable-stringify 2.1.0 MIT https://github.com/epoberezkin/fast-json-stable-stringify Approved
388 Yarn fastq 1.6.0 ISC https://github.com/mcollina/fastq#readme Approved
389 Yarn fill-range 7.0.1 MIT https://github.com/jonschlinkert/fill-range Approved
390 Yarn find-root 1.1.0 MIT Unknown Approved
391 Yarn focus-lock 0.10.1 MIT https://github.com/theKashey/focus-lock#readme Approved
392 Yarn focus-visible 5.2.0 W3C https://github.com/WICG/focus-visible Approved
393 Yarn form-data-encoder 1.7.2 MIT Unknown Approved
394 Yarn formdata-node 4.3.2 MIT Unknown Approved
395 Yarn function-bind 1.1.1 MIT https://github.com/Raynos/function-bind Approved
396 Yarn fzy.js 0.4.1 MIT http://github.com/jhawthorn/fzy.js Approved
397 Yarn get-intrinsic 1.1.1 MIT https://github.com/ljharb/get-intrinsic#readme Approved
398 Yarn get-nonce 1.0.1 MIT https://github.com/theKashey/get-nonce Approved
399 Yarn get-stream 5.1.0 MIT sindresorhus.com Approved
400 Go Yarn github.com/DataDog/datadog-agent/pkg/obfuscate get-symbol-description v0.0.0-20211129110424-6491aa3bf583 1.0.0 Apache 2.0 MIT https://github.com/inspect-js/get-symbol-description#readme Approved
401 Go github.com/DataDog/datadog-go github.com/DataDog/datadog-agent/pkg/obfuscate v4.8.2 v0.35.1 MIT Apache 2.0 Approved
402 Go github.com/DataDog/datadog-go/v5 github.com/DataDog/datadog-go v5.0.2 v4.8.3 MIT Approved
403 Go github.com/DataDog/datadog-go/v5 v5.1.0 MIT Approved
404 Go github.com/DataDog/gostackparse v0.5.0 Apache 2.0,New BSD Approved
405 Go github.com/DataDog/sketches-go v1.0.0 v1.4.1 Apache 2.0 Approved
406 Go github.com/Masterminds/semver v1.5.0 MIT Approved
407 Go github.com/NYTimes/gziphandler v1.1.1 Apache 2.0 Approved
408 Go github.com/ProtonMail/go-crypto v0.0.0-20220113124808-70ae35bab23f v0.0.0-20220407094043-a94812496cf5 New BSD Approved
409 Go github.com/PuerkitoBio/purell v1.1.1 New BSD Approved
410 Go github.com/PuerkitoBio/rehttp v1.1.0 New BSD Approved
411 Go github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 New BSD Approved
414 Go github.com/alecthomas/chroma v0.10.0 MIT Approved
415 Go github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 MIT Approved
416 Go github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d MIT Approved
Go github.com/avelino/slugify v0.0.0-20180501145920-855f152bd774 MIT Approved
417 Go github.com/aws/aws-sdk-go v1.42.45 Apache 2.0,New BSD Approved
418 Go github.com/aws/aws-sdk-go-v2 v1.13.0 Apache 2.0,New BSD Approved
419 Go github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.2.0 Apache 2.0 Approved
433 Go github.com/aws/aws-sdk-go-v2/service/s3 v1.24.1 Apache 2.0 Approved
434 Go github.com/aws/aws-sdk-go-v2/service/sso v1.9.0 Apache 2.0 Approved
435 Go github.com/aws/aws-sdk-go-v2/service/sts v1.14.0 Apache 2.0 Approved
436 Go github.com/aws/smithy-go v1.10.0 v1.11.0 Apache 2.0 Approved
437 Go github.com/aymerick/douceur v0.2.0 MIT Approved
438 Go github.com/beevik/etree v1.1.0 New BSD Approved
439 Go github.com/beorn7/perks v1.0.1 MIT Approved
440 Go github.com/bits-and-blooms/bitset v1.2.1 v1.2.2 New BSD Approved
441 Go github.com/boj/redistore v0.0.0-20180917114910-cd5dcc76aeff MIT Approved
442 Go github.com/buildkite/go-buildkite/v3 v3.0.1 Simplified BSD Approved
443 Go github.com/cenkalti/backoff v2.2.1 MIT Approved
450 Go github.com/containerd/typeurl v1.0.2 Apache 2.0 Approved
451 Go github.com/coreos/go-oidc v2.2.1 Apache 2.0 Approved
452 Go github.com/coreos/go-semver v0.3.0 Apache 2.0 Approved
453 Go github.com/cpuguy83/go-md2man/v2 v2.0.1 MIT Approved
454 Go github.com/davecgh/go-spew v1.1.1 ISC Approved
455 Go github.com/daviddengcn/go-colortext v1.0.0 MIT Approved
456 Go github.com/derision-test/glock v1.0.0 MIT Approved
464 Go github.com/docker/go-connections v0.4.0 Apache 2.0 Approved
465 Go github.com/docker/go-units v0.4.0 Apache 2.0 Approved
466 Go github.com/dustin/go-humanize v1.0.0 MIT Approved
467 Go github.com/emirpasic/gods v1.12.0 v1.16.0 Simplified BSD Approved
468 Go github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a MIT Approved
469 Go github.com/facebookgo/limitgroup v0.0.0-20150612190941-6abd8d71ec01 BSD Approved
470 Go github.com/facebookgo/muster v0.0.0-20150708232844-fd3d7953fd52 BSD Approved
471 Go github.com/fatih/color v1.13.0 MIT Approved
Go github.com/fatih/structs v1.1.0 MIT Approved
472 Go github.com/felixge/fgprof v0.9.2 MIT Approved
473 Go github.com/felixge/httpsnoop v1.0.2 MIT Approved
474 Go github.com/fsnotify/fsnotify v1.5.1 New BSD Approved
475 Go github.com/gen2brain/beeep v0.0.0-20210529141713-5586760f0cc1 Simplified BSD Approved
476 Go github.com/getsentry/raven-go v0.2.0 New BSD Approved
477 Go github.com/getsentry/sentry-go v0.12.0 Simplified BSD Approved
478 Go github.com/go-enry/go-enry/v2 v2.8.0 v2.8.2 Apache 2.0 Approved
479 Go github.com/go-errors/errors v1.4.2 MIT Approved
480 Go github.com/go-git/gcfg v1.5.0 New BSD Approved
481 Go github.com/go-git/go-billy/v5 v5.3.1 Apache 2.0 Approved
496 Go github.com/go-redsync/redsync v1.4.2 New BSD Approved
497 Go github.com/go-stack/stack v1.8.1 MIT Approved
498 Go github.com/gobwas/glob v0.2.3 MIT Approved
Go github.com/godbus/dbus/v5 v5.0.6 Simplified BSD Approved
499 Go github.com/gogo/protobuf v1.3.2 New BSD Approved
500 Go github.com/golang-jwt/jwt/v4 v4.2.0 MIT Approved
501 Go github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f New BSD Approved
506 Go github.com/gomodule/redigo v2.0.0 Apache 2.0 Approved
507 Go github.com/google/go-cmp v0.5.7 New BSD Approved
508 Go github.com/google/go-github v17.0.0 New BSD Approved
Go github.com/google/go-github/v28 v28.1.1 New BSD Approved
509 Go github.com/google/go-github/v31 v31.0.0 New BSD Approved
510 Go github.com/google/go-github/v41 v41.0.0 New BSD Approved
511 Go github.com/google/go-github/v43 v43.0.0 New BSD Approved
512 Go github.com/google/go-querystring v1.1.0 New BSD Approved
513 Go github.com/google/gofuzz v1.2.0 Apache 2.0 Approved
514 Go github.com/google/pprof v0.0.0-20220128192902-513e8ac6eea1 v0.0.0-20220412212628-83db2b799d1f Apache 2.0,ISC Approved
515 Go github.com/google/uuid v1.3.0 New BSD Approved
516 Go github.com/googleapis/gax-go/v2 v2.1.1 v2.3.0 New BSD Approved
517 Go github.com/googleapis/gnostic v0.5.5 Apache 2.0 Approved
518 Go github.com/gorilla/context v1.1.1 New BSD Approved
519 Go github.com/gorilla/csrf v1.7.1 New BSD Approved
528 Go github.com/gosimple/unidecode v1.0.1 Apache 2.0 Approved
529 Go github.com/goware/urlx v0.3.1 MIT Approved
530 Go github.com/grafana-tools/sdk v0.0.0-20220203092117-edae16afa87b Apache 2.0 Approved
531 Go github.com/grafana/regexp v0.0.0-20220202152701-6a046c4caf32 v0.0.0-20220304095617-2e8d9baf4ac2 New BSD Approved
532 Go github.com/graph-gophers/graphql-go v1.3.0 Simplified BSD Approved
533 Go github.com/graphql-go/graphql v0.8.0 MIT Approved
534 Go github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 MIT Approved
560 Go github.com/keegancsmith/rpc v1.3.0 New BSD Approved
561 Go github.com/keegancsmith/sqlf v1.1.1 MIT Approved
562 Go github.com/keegancsmith/tmpfriend v0.0.0-20180423180255-86e88902a513 MIT Approved
563 Go github.com/kevinburke/ssh_config v1.1.0 v1.2.0 MIT Approved
564 Go github.com/klauspost/compress v1.14.2 Apache 2.0,MIT,New BSD Approved
565 Go github.com/kr/pretty v0.3.0 MIT Approved
566 Go github.com/kr/text v0.2.0 MIT Approved
567 Go github.com/layeh/gopher-json v0.0.0-20201124131017-552bb3c4c3bf Public domain Approved
568 Go github.com/lib/pq v1.10.4 MIT Approved
569 Go github.com/lucasb-eyer/go-colorful v1.2.0 MIT Approved
570 Go github.com/machinebox/graphql v0.2.2 Apache 2.0 Approved
573 Go github.com/mattn/go-colorable v0.1.12 MIT Approved
574 Go github.com/mattn/go-isatty v0.0.14 MIT Approved
575 Go github.com/mattn/go-runewidth v0.0.13 MIT Approved
576 Go github.com/mattn/go-sqlite3 v1.14.11 v1.14.12 MIT Approved
577 Go github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 Apache 2.0 Approved
578 Go github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2 MIT Approved
579 Go github.com/microcosm-cc/bluemonday v1.0.17 New BSD Approved
609 Go github.com/prometheus/common/sigv4 v0.1.0 Apache 2.0 Approved
610 Go github.com/prometheus/procfs v0.7.3 Apache 2.0 Approved
611 Go github.com/qustavo/sqlhooks/v2 v2.1.0 MIT Approved
Go github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be Apache 2.0 Approved
612 Go github.com/rivo/uniseg v0.2.0 MIT Approved
613 Go github.com/rjeczalik/notify v0.9.2 MIT Approved
614 Go github.com/rogpeppe/go-internal v1.8.1 New BSD Approved
615 Go github.com/rs/xid v1.3.0 v1.4.0 MIT Approved
616 Go github.com/russellhaering/goxmldsig v1.1.1 Apache 2.0 Approved
617 Go github.com/russross/blackfriday v1.5.2 Simplified BSD Approved
618 Go github.com/russross/blackfriday/v2 v2.1.0 Simplified BSD Approved
619 Go github.com/schollz/progressbar/v3 v3.8.5 MIT Approved
620 Go github.com/segmentio/fasthash v1.0.3 MIT Approved
621 Go github.com/segmentio/ksuid v1.0.4 MIT Approved
626 Go github.com/shurcooL/octicon v0.0.0-20191102190552-cbb32d6a785c MIT Approved
627 Go github.com/shurcooL/sanitized_anchor_name v1.0.0 MIT Approved
628 Go github.com/slack-go/slack v0.10.1 MIT,Simplified BSD Approved
629 Go github.com/smacker/go-tree-sitter v0.0.0-20220209044044-0d3022e933c3 MIT Approved
630 Go github.com/snabb/diagio v1.0.0 MIT Approved
631 Go github.com/snabb/sitemap v1.0.0 MIT Approved
632 Go github.com/sourcegraph/alertmanager v0.21.1-0.20211110092431-863f5b1ee51b Apache 2.0 Approved
633 Go github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d New BSD Approved
634 Go github.com/sourcegraph/ctxvfs v0.0.0-20180418081416-2b65f1b1ea81 MIT Approved
635 Go github.com/sourcegraph/go-ctags v0.0.0-20220221141751-78951a22ec08 v0.0.0-20220404085534-f974026334d7 Apache 2.0 Approved
636 Go github.com/sourcegraph/go-diff v0.6.1 MIT Approved
637 Go github.com/sourcegraph/go-jsonschema v0.0.0-20211011105148-2e30f7bacbe1 MIT Approved
638 Go github.com/sourcegraph/go-langserver v2.0.1-0.20181108233942-4a51fa2e1238 MIT,New BSD Approved
645 Go github.com/sourcegraph/oauth2 v0.0.0-20210825125341-77c1d99ece3c New BSD Approved
646 Go github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e New BSD Approved
647 Go github.com/sourcegraph/yaml v1.0.1-0.20200714132230-56936252f152 MIT Approved
648 Go github.com/sourcegraph/zoekt v0.0.0-20220317133250-094eea3551a4 v0.0.0-20220415201645-48d1beaad294 Apache 2.0 Approved
649 Go github.com/src-d/gcfg v1.4.0 New BSD Approved
650 Go github.com/stretchr/testify v1.7.0 v1.7.1 MIT Approved
651 Go github.com/stripe/stripe-go v70.15.0 MIT Approved
652 Go github.com/throttled/throttled/v2 v2.9.0 New BSD Approved
653 Go github.com/tidwall/gjson v1.14.0 MIT Approved
654 Go github.com/tidwall/match v1.1.1 MIT Approved
655 Go github.com/tidwall/pretty v1.2.0 MIT Approved
656 Go github.com/tinylib/msgp v1.1.2 v1.1.6 MIT Approved
657 Go github.com/tj/go-naturaldate v1.3.0 MIT Approved
658 Go github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 MIT Approved
659 Go github.com/uber/gonduit v0.13.0 MIT Approved
660 Go github.com/uber/jaeger-client-go v2.30.0 Apache 2.0 Approved
661 Go github.com/uber/jaeger-lib v2.4.1 Apache 2.0 Approved
662 Go github.com/urfave/cli/v2 v2.4.0 MIT Approved
663 Go github.com/vmihailenco/msgpack/v5 v5.3.5 Simplified BSD Approved
664 Go github.com/vmihailenco/tagparser/v2 v2.0.0 Simplified BSD Approved
665 Go github.com/xanzy/ssh-agent v0.3.1 Apache 2.0 Approved
671 Go github.com/xlab/treeprint v1.1.0 MIT Approved
672 Go github.com/yuin/goldmark v1.4.4 MIT Approved
673 Go github.com/yuin/goldmark-emoji v1.0.1 MIT Approved
674 Go github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 MIT Approved
675 Yarn glob-parent 5.1.2 ISC https://gulpjs.com/ Approved
676 Yarn glob-to-regexp 0.4.1 Simplified BSD Unknown Approved
677 Yarn globby 11.1.0 MIT https://sindresorhus.com Approved
678 Go go.etcd.io/bbolt v1.3.6 MIT Approved
679 Go go.mongodb.org/mongo-driver v1.8.3 Apache 2.0 Approved
680 Go go.opencensus.io v0.23.0 Apache 2.0 Approved
681 Go go.uber.org/atomic v1.9.0 MIT Approved
682 Go go.uber.org/automaxprocs v1.4.0 v1.5.1 MIT Approved
683 Go go.uber.org/ratelimit v0.2.0 MIT Approved
684 Go golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd v0.0.0-20220411220226-7b82a4e95df4 New BSD Approved
685 Go golang.org/x/mod v0.5.1 v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 New BSD Approved
686 Go golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd v0.0.0-20220412020605-290c469a71a5 New BSD Approved
687 Go golang.org/x/sync v0.0.0-20210220032951-036812b2e83c New BSD Approved
688 Go golang.org/x/sys v0.0.0-20220209214540-3681064d5158 v0.0.0-20220412211240-33da011f77ad New BSD Approved
689 Go golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 New BSD Approved
690 Go golang.org/x/text v0.3.7 New BSD Approved
691 Go golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 v0.0.0-20220411224347-583f2d630306 New BSD Approved
692 Go golang.org/x/tools v0.1.9 v0.1.10 New BSD Approved
693 Go golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 v0.0.0-20220411194840-2f41105eb62f New BSD Approved
694 Go google.golang.org/api v0.66.0 v0.74.0 New BSD Approved
695 Go google.golang.org/genproto v0.0.0-20220202230416-2a053f022f0d v0.0.0-20220407144326-9054f6ed7bac Apache 2.0 Approved
696 Go google.golang.org/grpc v1.44.0 v1.45.0 Apache 2.0 Approved
697 Go google.golang.org/protobuf v1.27.1 v1.28.0 New BSD Approved
698 Go gopkg.in/DataDog/dd-trace-go.v1 v1.36.2 v1.37.1 Apache 2.0,New BSD Approved
699 Go gopkg.in/alexcesaro/statsd.v2 v2.0.0 MIT Approved
700 Go gopkg.in/inf.v0 v0.9.1 New BSD Approved
701 Go gopkg.in/natefinch/lumberjack.v2 v2.0.0 MIT Approved
706 Go gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b MIT Approved
707 Yarn got 11.5.2 MIT Unknown Approved
708 Yarn graceful-fs 4.2.9 ISC Unknown Approved
709 Yarn graphiql 1.3.2 1.8.0 MIT http://github.com/graphql/graphiql/tree/master/packages/graphiql#readme Approved
710 Yarn graphql-language-service graphql-config 3.1.2 4.2.0 MIT https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme https://graphql-config.com/ Approved
711 Yarn graphql-language-service-interface graphql-executor 2.8.2 0.0.22 MIT https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-interface#readme https://github.com/yaacovCR/graphql-executor Approved
712 Yarn graphql-language-service-parser graphql-language-service 1.9.0 5.0.1 MIT https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-parser#readme https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme Approved
713 Yarn graphql-language-service-types graphql-sse 1.8.0 1.1.0 MIT https://github.com/graphql/graphiql/tree/main/graphql-language-service-types#readme https://github.com/enisdenjo/graphql-sse#readme Approved
Yarn graphql-language-service-utils 2.5.1 MIT https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-utils#readme Approved
714 Yarn graphql-tag 2.12.5 MIT https://github.com/apollographql/graphql-tag#readme Approved
715 Yarn graphql-ws 5.6.4 MIT https://github.com/enisdenjo/graphql-ws#readme Approved
716 Yarn gud 1.0.0 MIT Unknown Approved
717 Yarn has 1.0.3 MIT https://github.com/tarruda/has Approved
718 Yarn has-ansi 2.0.0 MIT sindresorhus.com Approved
721 Yarn has-flag 3.0.0 MIT sindresorhus.com Approved
722 Yarn has-flag 4.0.0 MIT sindresorhus.com Approved
723 Yarn has-symbols 1.0.2 MIT http://ljharb.codes Approved
724 Yarn has-tostringtag 1.0.0 MIT https://github.com/inspect-js/has-tostringtag#readme Approved
725 Yarn hex-color-regex 1.1.0 MIT http://www.tunnckocore.tk Approved
726 Yarn highlight.js 10.7.3 New BSD https://highlightjs.org/ Approved
727 Yarn highlightjs-graphql 1.0.2 MIT https://github.com/dpeek/highlightjs-graphql#readme Approved
733 Yarn http-cache-semantics 4.0.3 Simplified BSD https://kornel.ski/ Approved
734 Yarn http-status-codes 2.1.4 MIT Unknown Approved
735 Yarn http2-wrapper 1.0.0-beta.5.2 MIT https://github.com/szmarczak/http2-wrapper#readme Approved
736 Yarn https-browserify 1.0.0 MIT https://github.com/substack/https-browserify Approved
737 Yarn ieee754 1.2.1 New BSD https://feross.org Approved
738 Yarn ignore 5.2.0 MIT Unknown Approved
739 Yarn import-fresh 2.0.0 MIT sindresorhus.com Approved
740 Yarn import-fresh 3.3.0 MIT https://sindresorhus.com Approved
741 Yarn indexes-of 1.0.1 MIT https://github.com/dominictarr/indexes-of Approved
742 Yarn inherits 2.0.4 ISC Unknown Approved
743 Yarn internal-slot 1.0.3 MIT https://github.com/ljharb/internal-slot#readme Approved
744 Yarn internmap 1.0.1 ISC https://github.com/mbostock/internmap/ Approved
745 Yarn invariant 2.2.4 MIT Unknown Approved
746 Yarn is-absolute-url 2.1.0 MIT http://sindresorhus.com Approved
750 Yarn is-arrayish 0.3.2 MIT http://github.com/qix- Approved
751 Yarn is-bigint 1.0.1 MIT https://github.com/ljharb/is-bigint#readme Approved
752 Yarn is-boolean-object 1.1.0 MIT Unknown Approved
753 Yarn is-callable 1.2.3 1.2.4 MIT http://ljharb.codes Approved
754 Yarn is-color-stop 1.1.0 MIT https://github.com/pigcan/is-color-stop#readme Approved
755 Yarn is-core-module 2.8.1 MIT https://github.com/inspect-js/is-core-module Approved
756 Yarn is-date-object 1.0.2 MIT Unknown Approved
757 Yarn is-directory 0.3.1 MIT https://github.com/jonschlinkert/is-directory Approved
758 Yarn is-extglob 2.1.1 MIT https://github.com/jonschlinkert/is-extglob Approved
759 Yarn is-glob 4.0.1 MIT https://github.com/micromatch/is-glob Approved
760 Yarn is-negative-zero 2.0.1 MIT https://github.com/inspect-js/is-negative-zero Approved
761 Yarn is-number 7.0.0 MIT https://github.com/jonschlinkert/is-number Approved
762 Yarn is-number-object 1.0.4 MIT Unknown Approved
763 Yarn is-obj 2.0.0 MIT sindresorhus.com Approved
764 Yarn is-plain-object 5.0.0 MIT https://github.com/jonschlinkert/is-plain-object Approved
765 Yarn is-regex 1.1.3 1.1.4 MIT https://github.com/inspect-js/is-regex Approved
766 Yarn is-resolvable 1.1.0 ISC https://github.com/shinnn Approved
767 Yarn is-string is-shared-array-buffer 1.0.6 1.0.1 MIT Unknown https://github.com/inspect-js/is-shared-array-buffer#readme Approved
768 Yarn is-string 1.0.7 MIT Unknown Approved
769 Yarn is-symbol 1.0.3 MIT Unknown Approved
770 Yarn is-weakref 1.0.2 MIT https://github.com/inspect-js/is-weakref#readme Approved
771 Yarn isarray 0.0.1 MIT https://github.com/juliangruber/isarray Approved
772 Yarn isomorphic-ws 4.0.1 MIT https://github.com/heineiuo/isomorphic-ws#readme Approved
773 Yarn iterall 1.3.0 MIT https://github.com/leebyron/iterall Approved
774 Yarn iterare 1.2.1 ISC Unknown Approved
775 Yarn jest-worker 27.5.1 MIT Unknown Approved
776 Yarn js-cookie 2.2.1 MIT Unknown Approved
790 Go k8s.io/utils v0.0.0-20220127004650-9b3446523e65 Apache 2.0,New BSD Approved
791 Yarn keyv 4.0.0 MIT https://github.com/lukechilds/keyv Approved
792 Yarn klona 2.0.4 MIT https://lukeed.com Approved
793 Go layeh.com/gopher-luar v1.0.10 Mozilla Public License 2.0 Approved
794 Yarn lines-and-columns 1.1.6 MIT https://github.com/eventualbuddha/lines-and-columns#readme Approved
795 Yarn linguist-languages 7.14.0 MIT https://github.com/ikatyang/linguist-languages#readme Approved
796 Yarn linkify-it 2.0.3 3.0.3 MIT Unknown Approved
797 Yarn loader-runner 4.2.0 MIT https://github.com/webpack/loader-runner#readme Approved
798 Yarn lodash 4.17.21 MIT https://lodash.com/ Approved
799 Yarn lodash.debounce 4.0.8 MIT https://lodash.com/ Approved
800 Yarn lodash.get 4.4.2 MIT https://lodash.com/ Approved
801 Yarn lodash.isequal 4.5.0 MIT https://lodash.com/ Approved
802 Yarn lodash.memoize 4.1.2 MIT https://lodash.com/ Approved
803 Yarn lodash.throttle 4.1.1 MIT https://lodash.com/ Approved
805 Yarn loose-envify 1.4.0 MIT https://github.com/zertosh/loose-envify Approved
806 Yarn lowercase-keys 2.0.0 MIT sindresorhus.com Approved
807 Yarn lru-cache 6.0.0 ISC Unknown Approved
808 Yarn markdown-it lru-cache 10.0.0 7.8.0 MIT ISC Unknown Approved
809 Yarn make-error 1.3.6 ISC https://github.com/JsCommunity/make-error Approved
810 Yarn markdown-it 12.3.2 MIT Unknown Approved
811 Yarn marked 4.0.0 MIT https://marked.js.org/ Approved
812 Yarn math-expression-evaluator 1.2.17 MIT https://github.com/redhivesoftware/math-expression-evaluator#readme Approved
813 Yarn mdi-react 8.1.0 (MIT AND OFL-1.1) https://github.com/levrik/mdi-react Approved
816 Yarn mdurl 1.0.1 MIT Unknown Approved
817 Yarn memoize-one 5.0.4 MIT Unknown Approved
818 Yarn merge-stream 2.0.0 MIT Unknown Approved
819 Yarn merge2 1.4.1 MIT https://github.com/teambition/merge2 Approved
820 Yarn meros 1.2.0 MIT https://marais.io Approved
821 Yarn micromatch 4.0.4 MIT https://github.com/micromatch/micromatch Approved
822 Yarn mime-db 1.49.0 MIT Unknown Approved
823 Yarn mime-types 2.1.32 MIT Unknown Approved
824 Yarn mimic-response 1.0.1 MIT sindresorhus.com Approved
825 Yarn mimic-response 3.1.0 MIT https://sindresorhus.com Approved
826 Yarn mini-create-react-context 0.4.0 MIT Unknown Approved
827 Yarn minimatch 3.0.4 ISC http://blog.izs.me Approved
828 Yarn minimatch 4.2.1 ISC http://blog.izs.me Approved
829 Yarn minimist 1.2.5 MIT https://github.com/substack/minimist Approved
830 Yarn mitt 2.1.0 MIT https://github.com/developit/mitt Approved
831 Yarn mkdirp 0.5.5 MIT http://substack.net Approved
834 Yarn nanoid 3.2.0 MIT Unknown Approved
835 Yarn neo-async 2.6.2 MIT https://github.com/suguru03/neo-async Approved
836 Yarn nice-ticks 1.0.1 ISC https://github.com/cenfun/nice-ticks#readme Approved
837 Yarn node-fetch node-domexception 2.6.1 1.0.0 MIT https://github.com/bitinn/node-fetch https://github.com/jimmywarting/node-domexception#readme Approved
838 Yarn node-fetch 2.6.7 MIT https://github.com/bitinn/node-fetch Approved
839 Yarn node-releases 2.0.2 MIT Unknown Approved
840 Yarn normalize-path 2.1.1 MIT https://github.com/jonschlinkert/normalize-path Approved
841 Yarn normalize-url 3.3.0 MIT sindresorhus.com Approved
842 Yarn normalize-url 4.3.0 MIT sindresorhus.com Approved
843 Yarn nth-check 1.0.2 Simplified BSD https://github.com/fb55/nth-check Approved
844 Yarn nullthrows 1.1.1 MIT Unknown Approved
845 Yarn object-assign 4.1.1 MIT sindresorhus.com Approved
846 Yarn object-inspect 1.10.3 1.12.0 MIT https://github.com/inspect-js/object-inspect Approved
847 Yarn object-is 1.1.5 MIT https://github.com/es-shims/object-is Approved
848 Yarn object-keys 1.1.1 MIT http://ljharb.codes Approved
849 Yarn object.assign 4.1.2 MIT Unknown Approved
850 Yarn object.getownpropertydescriptors 2.1.2 2.1.3 MIT Unknown Approved
851 Yarn object.values 1.1.1 MIT Unknown Approved
852 Yarn once 1.4.0 ISC http://blog.izs.me/ Approved
853 Yarn open-color 1.8.0 MIT https://github.com/yeun/open-color Approved
854 Yarn optimism 0.16.1 MIT https://github.com/benjamn/optimism#readme Approved
855 Yarn original 1.0.2 MIT Unknown Approved
856 Yarn p-cancelable 2.0.0 MIT sindresorhus.com Approved
857 Yarn p-limit 3.1.0 MIT https://sindresorhus.com Approved
858 Yarn parent-module 1.0.1 MIT sindresorhus.com Approved
864 Yarn path-to-regexp 1.7.0 MIT Unknown Approved
865 Yarn path-type 4.0.0 MIT sindresorhus.com Approved
866 Yarn performance-now 2.1.0 MIT https://github.com/braveg1rl/performance-now Approved
867 Yarn picocolors 0.2.1 ISC Unknown Approved
868 Yarn picocolors 1.0.0 ISC Unknown Approved
869 Yarn picomatch 2.3.1 MIT https://github.com/micromatch/picomatch Approved
870 Yarn popper.js 1.15.0 MIT https://popper.js.org/ Approved
871 Yarn postcss 6.0.1 MIT http://postcss.org/ Approved
872 Yarn postcss 7.0.36 7.0.39 MIT https://postcss.org/ Approved
873 Yarn postcss 8.4.5 MIT https://postcss.org/ Approved
874 Yarn postcss-calc 7.0.5 MIT Unknown Approved
875 Yarn postcss-colormin 4.0.3 MIT https://github.com/cssnano/cssnano Approved
909 Yarn pump 3.0.0 MIT Unknown Approved
910 Yarn punycode 2.1.1 MIT https://mths.be/punycode Approved
911 Yarn q 1.5.1 MIT https://github.com/kriskowal/q Approved
912 Yarn querystringify 2.2.0 MIT https://github.com/unshiftio/querystringify Approved
913 Yarn quick-lru 5.1.1 MIT https://sindresorhus.com Approved
914 Yarn raf 3.4.1 MIT Unknown Approved
915 Yarn randombytes 2.1.0 MIT https://github.com/crypto-browserify/randombytes Approved
916 Yarn react 16.14.0 17.0.2 MIT https://reactjs.org/ Approved
917 Yarn react-circular-progressbar 2.0.3 MIT Unknown Approved
918 Yarn react-clientside-effect 1.2.5 MIT https://github.com/thekashey/react-clientside-effect Approved
919 Yarn react-dom 16.14.0 17.0.2 MIT https://reactjs.org/ Approved
920 Yarn react-dom-confetti 0.1.4 MIT Unknown Approved
921 Yarn react-draggable 4.4.3 MIT https://github.com/mzabriskie/react-draggable Approved
922 Yarn react-elm-components 1.1.0 New BSD https://github.com/evancz/react-elm Approved
943 Yarn react-use-measure 2.0.4 MIT Unknown Approved
944 Yarn react-visibility-sensor 5.1.1 MIT Unknown Approved
945 Yarn reactstrap 8.9.0 MIT https://github.com/reactstrap/reactstrap#readme Approved
946 Yarn readable-stream 3.6.0 MIT Unknown Approved
947 Yarn recharts 1.8.5 MIT https://github.com/recharts/recharts Approved
948 Yarn recharts-scale 0.4.2 MIT https://github.com/recharts/recharts-scale Approved
949 Yarn reduce-css-calc 1.3.0 MIT Unknown Approved
951 Yarn regenerator-runtime 0.13.7 MIT Unknown Approved
952 Yarn regexp.prototype.flags 1.3.1 MIT Unknown Approved
953 Yarn regexpp 3.1.0 MIT https://github.com/mysticatea/regexpp#readme Approved
954 Yarn remove-trailing-separator 1.1.0 ISC https://github.com/darsain/remove-trailing-separator#readme Approved
955 Yarn require-from-string 2.0.2 MIT github.com/floatdrop Approved
956 Yarn requireindex 1.1.0 MIT http://person.sh Approved
957 Yarn requires-port 1.0.0 MIT https://github.com/unshiftio/requires-port Approved
958 Yarn resize-observer-polyfill 1.5.1 MIT https://github.com/que-etc/resize-observer-polyfill Approved
959 Yarn resolve 1.22.0 MIT http://substack.net Approved
960 Yarn resolve-alpn 1.0.0 MIT https://github.com/szmarczak/resolve-alpn#readme Approved
961 Yarn resolve-from 3.0.0 MIT sindresorhus.com Approved
962 Yarn resolve-from 4.0.0 MIT sindresorhus.com Approved
963 Yarn resolve-from 5.0.0 MIT sindresorhus.com Approved
964 Yarn resolve-pathname 2.2.0 MIT Unknown Approved
965 Yarn responselike 2.0.0 MIT Unknown Approved
966 Yarn reusify 1.0.4 MIT https://github.com/mcollina/reusify#readme Approved
967 Yarn rgb-regex 1.0.1 MIT https://github.com/regexps/rgb-regex Approved
968 Yarn rgba-regex 1.0.0 MIT https://github.com/johnotander/rgba-regex Approved
969 Yarn run-parallel 1.1.9 MIT https://github.com/feross/run-parallel Approved
970 Yarn rxjs 6.6.3 Apache 2.0 https://github.com/ReactiveX/RxJS Approved
971 Yarn safe-buffer 5.1.2 MIT https://github.com/feross/safe-buffer Approved
972 Yarn sanitize-html 2.3.3 MIT Unknown Approved
973 Yarn sax 1.2.4 ISC http://blog.izs.me/ Approved
974 Yarn scheduler 0.19.1 0.20.2 MIT https://reactjs.org/ Approved
975 Yarn schema-utils 3.1.0 MIT https://github.com/webpack/schema-utils Approved
976 Yarn semver 7.3.5 ISC Unknown Approved
977 Yarn serialize-javascript 6.0.0 New BSD https://github.com/yahoo/serialize-javascript Approved
978 Yarn shepherd.js 8.3.1 MIT https://shepherdjs.dev/ Approved
979 Yarn side-channel 1.0.4 MIT https://github.com/ljharb/side-channel#readme Approved
980 Go sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 Apache 2.0 Approved
981 Go sigs.k8s.io/kustomize/kyaml v0.13.3 Apache 2.0,MIT Approved
982 Go sigs.k8s.io/structured-merge-diff/v4 v4.2.1 Apache 2.0 Approved
983 Go sigs.k8s.io/yaml v1.3.0 MIT Approved
984 Yarn simple-swizzle 0.2.2 MIT http://github.com/qix- Approved
985 Yarn slash 3.0.0 MIT sindresorhus.com Approved
986 Yarn smoothscroll-polyfill 0.4.4 MIT https://iamdustan.com/smoothscroll Approved
Yarn source-list-map 2.0.1 MIT https://github.com/webpack/source-list-map Approved
987 Yarn source-map 0.5.7 New BSD https://github.com/mozilla/source-map Approved
988 Yarn source-map 0.6.1 New BSD https://github.com/mozilla/source-map Approved
989 Yarn source-map 0.7.3 New BSD https://github.com/mozilla/source-map Approved
990 Yarn source-map-js 1.0.2 New BSD https://github.com/7rulnik/source-map-js Approved
991 Yarn source-map-support 0.5.19 MIT Unknown Approved
992 Yarn sourcegraph 25.5.0 Apache 2.0 https://github.com/sourcegraph/sourcegraph Approved
Yarn sourcegraph-preview 0.0.2 Apache 2.0 Unknown Approved
993 Yarn sprintf-js 1.0.3 New BSD http://alexei.ro/ Approved
994 Yarn stable 0.1.8 MIT Unknown Approved
995 Yarn stream-http 3.2.0 MIT https://github.com/jhiesey/stream-http#readme Approved
996 Yarn string-env-interpolation 1.0.1 MIT Unknown Approved
997 Yarn string-score 1.0.1 MIT https://github.com/KenPowers/string-score Approved
998 Yarn string.prototype.trimend 1.0.4 MIT Unknown Approved
999 Yarn string.prototype.trimstart 1.0.4 MIT Unknown Approved
1000 Yarn string_decoder 1.1.1 MIT https://github.com/nodejs/string_decoder Approved
1001 Yarn strip-ansi 3.0.1 MIT sindresorhus.com Approved
1002 Yarn style-mod 4.0.0 MIT Unknown Approved
1003 Yarn stylehacks 4.0.3 MIT https://github.com/cssnano/cssnano Approved
1004 Yarn stylis 4.0.13 MIT https://github.com/thysultan/stylis.js Approved
1005 Yarn subscriptions-transport-ws 0.11.0 MIT Unknown Approved
1006 Yarn supports-color 2.0.0 MIT sindresorhus.com Approved
1007 Yarn supports-color 3.2.3 MIT sindresorhus.com Approved
1008 Yarn supports-color 5.5.0 MIT sindresorhus.com Approved
Yarn supports-color 6.1.0 MIT sindresorhus.com Approved
1009 Yarn supports-color 8.1.1 MIT https://sindresorhus.com Approved
1010 Yarn supports-preserve-symlinks-flag 1.0.0 MIT https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme Approved
1011 Yarn svgo 1.3.2 MIT https://github.com/svg/svgo Approved
1012 Yarn symbol-observable 1.2.0 MIT Unknown Approved
1013 Yarn symbol-observable 4.0.0 MIT Unknown Approved
1014 Yarn sync-fetch 0.3.1 MIT https://github.com/larsgw/sync-fetch#readme Approved
1015 Yarn tabbable 4.0.0 MIT https://github.com/davidtheclark/tabbable#readme Approved
1016 Yarn tabbable 5.1.5 5.2.1 MIT https://github.com/focus-trap/tabbable#readme Approved
1017 Yarn tagged-template-noop 2.1.1 MIT https://github.com/lleaff/tagged-template-noop#readme Approved
1018 Yarn tapable 2.2.0 MIT https://github.com/webpack/tapable Approved
1019 Yarn terser 5.7.1 Simplified BSD https://terser.org/ Approved
1023 Yarn tiny-invariant 1.0.3 MIT Unknown Approved
1024 Yarn tiny-warning 1.0.3 MIT Unknown Approved
1025 Yarn to-fast-properties 2.0.0 MIT sindresorhus.com Approved
1026 Yarn to-regex-range 5.0.1 MIT https://github.com/micromatch/to-regex-range Approved
1027 Yarn toggle-selection 1.0.6 MIT sudodoki.name Approved
1028 Yarn tr46 0.0.3 MIT https://github.com/Sebmaster/tr46.js#readme Approved
1029 Yarn ts-invariant 0.9.4 MIT https://github.com/apollographql/invariant-packages Approved
1030 Yarn ts-key-enum 2.0.8 MIT https://gitlab.com/nfriend/ts-key-enum#readme Approved
1031 Yarn ts-node 9.1.1 MIT https://github.com/TypeStrong/ts-node Approved
1032 Yarn tslib 2.1.0 BSD Zero Clause License https://www.typescriptlang.org/ Approved
1033 Yarn typed-styles 0.0.7 MIT Unknown Approved
1034 Yarn uc.micro 1.0.5 MIT Unknown Approved
1035 Yarn unbox-primitive 1.0.1 MIT https://github.com/ljharb/unbox-primitive#readme Approved
1036 Yarn undici 4.16.0 MIT https://undici.nodejs.org/ Approved
1037 Yarn uniq 1.0.1 MIT Unknown Approved
1038 Yarn uniqs 2.0.0 MIT Unknown Approved
1039 Yarn unixify 1.0.0 MIT https://github.com/jonschlinkert/unixify Approved
1040 Yarn unquote 1.1.1 MIT https://github.com/lakenen/node-unquote Approved
1041 Yarn uri-js 4.4.1 Simplified BSD https://github.com/garycourt/uri-js Approved
1042 Yarn url-parse 1.5.4 MIT Unknown Approved
1043 Yarn use-callback-ref 1.2.5 MIT Unknown Approved
1044 Yarn use-deep-compare-effect 1.6.1 MIT https://github.com/kentcdodds/use-deep-compare-effect#readme Approved
1045 Yarn use-resize-observer 7.0.0 MIT Unknown Approved
1049 Yarn utility-types 3.10.0 MIT https://github.com/piotrwitek/utility-types Approved
1050 Yarn uuid 8.3.2 MIT Unknown Approved
1051 Yarn value-equal 0.2.1 MIT Unknown Approved
1052 Yarn value-or-promise 1.0.11 MIT Unknown Approved
1053 Yarn vendors 1.0.4 MIT https://wooorm.com Approved
1054 Yarn vscode-languageserver-textdocument 1.0.2 MIT Unknown Approved
1055 Yarn vscode-languageserver-types 3.15.1 MIT Unknown Approved
1056 Yarn w3c-keyname 2.2.4 MIT https://github.com/marijnh/w3c-keyname#readme Approved
1057 Yarn warning 3.0.0 New BSD https://github.com/BerkeleyTrue/warning Approved
1058 Yarn warning 4.0.3 MIT https://github.com/BerkeleyTrue/warning Approved
1059 Yarn watchpack 2.2.0 2.3.1 MIT https://github.com/webpack/watchpack Approved
1060 Yarn web-streams-polyfill 3.2.0 MIT https://github.com/MattiasBuelens/web-streams-polyfill#readme Approved
1061 Yarn web-streams-polyfill 4.0.0-beta.1 MIT https://github.com/MattiasBuelens/web-streams-polyfill#readme Approved
1062 Yarn webext-additional-permissions 1.0.0 MIT bfred.it Approved
1063 Yarn webext-domain-permission-toggle 1.0.1 MIT bfred.it Approved
1064 Yarn webextension-polyfill 0.6.0 Mozilla Public License 2.0 https://github.com/mozilla/webextension-polyfill Approved
1065 Yarn webpack webidl-conversions 5.45.1 3.0.1 MIT Simplified BSD https://github.com/webpack/webpack https://domenic.me/ Approved
1066 Yarn webpack-sources webpack 2.3.0 5.70.0 MIT https://github.com/webpack/webpack-sources#readme https://github.com/webpack/webpack Approved
1067 Yarn webpack-sources 3.2.3 MIT https://github.com/webpack/webpack-sources#readme Approved
1068 Yarn whatwg-url 5.0.0 MIT Unknown Approved
1069 Yarn which-boxed-primitive 1.0.2 MIT https://github.com/inspect-js/which-boxed-primitive#readme Approved
1070 Yarn wrappy 1.0.2 ISC https://github.com/npm/wrappy Approved
1071 Yarn ws 7.5.7 MIT https://github.com/websockets/ws Approved
1072 Yarn ws 8.5.0 MIT https://github.com/websockets/ws Approved
1073 Yarn xtend 4.0.2 MIT https://github.com/Raynos/xtend Approved
1074 Yarn yallist 4.0.0 ISC http://blog.izs.me/ Approved
1075 Yarn yaml 1.10.0 ISC https://eemeli.org/yaml/ Approved
1076 Yarn yaml-ast-parser 0.0.43 Apache 2.0 https://github.com/mulesoft-labs/yaml-ast-parser Approved
1077 Yarn yaml-language-server-parser 0.1.3 Apache 2.0 https://github.com/redhat-developer/yaml-ast-parser Approved
1078 Yarn yn 3.1.1 MIT sindresorhus.com Approved
1079 Yarn yocto-queue 0.1.0 MIT https://sindresorhus.com Approved
1080 Yarn zen-observable 0.8.15 MIT https://github.com/zenparsing/zen-observable Approved
1081 Yarn zen-observable-ts 1.2.3 MIT Unknown Approved