-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpkgs.txt
More file actions
4065 lines (4065 loc) · 57.5 KB
/
pkgs.txt
File metadata and controls
4065 lines (4065 loc) · 57.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@aashutoshrathi/word-wrap
@alloc/quick-lru
@amplitude/ua-parser-js
@ampproject/remapping
@apidevtools/json-schema-ref-parser
@apidevtools/swagger-methods
@apidevtools/swagger-parser
@apify/ps-tree
@ardatan/sync-fetch
@asamuzakjp/dom-selector
@asteasolutions/zod-to-openapi
@asyncapi/avro-schema-parser
@asyncapi/generator
@asyncapi/html-template
@asyncapi/openapi-schema-parser
@asyncapi/parser
@asyncapi/protobuf-schema-parser
@asyncapi/raml-dt-schema-parser
@auth0/auth0-spa-js
@babel/plugin-proposal-private-property-in-object
@babel/regjsgen
@balena/dockerignore
@base2/pretty-print-object
@borewit/text-codec
@braintree/sanitize-url
@bugsnag/cuid
@bundled-es-modules/cookie
@christiangalsterer/node-postgres-prometheus-exporter
@christiangalsterer/pg-promise-prometheus-exporter
@cloudflare/kv-asset-handler
@cnakazawa/watch
@codegenie/serverless-express
@codemirror/commands
@codemirror/gutter
@codemirror/lang-css
@codemirror/lang-html
@codemirror/lang-javascript
@codemirror/lang-json
@codemirror/lang-markdown
@codemirror/lang-python
@codemirror/lang-sql
@codemirror/lang-xml
@codemirror/language
@codemirror/rangeset
@codemirror/search
@codemirror/state
@codemirror/text
@codemirror/view
@colors/colors
@commander-js/extra-typings
@criblinc/docker-names
@cspotcode/source-map-support
@csstools/convert-colors
@csstools/normalize.css
@csstools/sass-import-resolve
@ctrl/tinycolor
@cucumber/cucumber
@cucumber/gherkin-streams
@cucumber/message-streams
@cypress/xvfb
@dabh/diagnostics
@dagrejs/dagre
@dagrejs/graphlib
@dailymotion/vast-client
@datastructures-js/heap
@dependents/detective-less
@digitalroute/cz-conventional-changelog-for-jira
@egjs/agent
@egjs/children-differ
@egjs/hammerjs
@elastic/elasticsearch
@epegzz/sass-vars-loader
@epic-web/invariant
@eslint-community/eslint-utils
@eslint-community/regexpp
@eslint/eslintrc
@eslint/js
@esm2cjs/p-timeout
@expo/sudo-prompt
@fastify/busboy
@foliojs-fork/restructure
@fortaine/fetch-event-source
@fortawesome/react-fontawesome
@gar/promisify
@gatsbyjs/webpack-hot-middleware
@github/browserslist-config
@github/hotkey
@googlemaps/url-signature
@hapi/accept
@hapi/address
@hapi/ammo
@hapi/b64
@hapi/boom
@hapi/bossy
@hapi/bounce
@hapi/bourne
@hapi/call
@hapi/catbox
@hapi/catbox-memory
@hapi/catbox-object
@hapi/code
@hapi/content
@hapi/cryptiles
@hapi/eslint-plugin
@hapi/file
@hapi/formula
@hapi/good
@hapi/heavy
@hapi/hoek
@hapi/iron
@hapi/joi
@hapi/lab
@hapi/mimos
@hapi/nigel
@hapi/oppsy
@hapi/pez
@hapi/pinpoint
@hapi/podium
@hapi/shot
@hapi/somever
@hapi/statehood
@hapi/subtext
@hapi/teamwork
@hapi/tlds
@hapi/topo
@hapi/validate
@hapi/vise
@hapi/vision
@hapi/wreck
@httptoolkit/websocket-stream
@humanwhocodes/config-array
@humanwhocodes/gitignore-to-minimatch
@humanwhocodes/module-importer
@humanwhocodes/object-schema
@humanwhocodes/retry
@hyperjump/json
@iarna/toml
@ioredis/commands
@isaacs/balanced-match
@isaacs/cliui
@isaacs/fs-minipass
@isaacs/string-locale-compare
@isaacs/ttlcache
@istanbuljs/load-nyc-config
@istanbuljs/schema
@javascript-obfuscator/escodegen
@javascript-obfuscator/estraverse
@joi/date
@jridgewell/gen-mapping
@jridgewell/resolve-uri
@jridgewell/set-array
@jridgewell/source-map
@jridgewell/sourcemap-codec
@jsdevtools/ono
@jsonhero/path
@juggle/resize-observer
@koa/router
@lezer/common
@lezer/json
@lezer/lr
@lezer/python
@lezer/xml
@lightningchart/eventer
@ljharb/through
@logdna/tail-file
@lukeed/csprng
@lukeed/uuid
@mapbox/fusspot
@mapbox/geojson-area
@mapbox/geojson-rewind
@mapbox/jsonlint-lines-primitives
@mapbox/mapbox-gl-draw-static-mode
@mapbox/mapbox-sdk
@mapbox/point-geometry
@mapbox/sphericalmercator
@mapbox/tiletype
@mapbox/tiny-sdf
@mapbox/unitbezier
@mapbox/vector-tile
@mapbox/whoots-js
@metro-fs/analytics-plugin-posthog
@microsoft/fetch-event-source
@modelcontextprotocol/sdk
@nestjs/axios
@nestjs/cache-manager
@nestjs/cli
@nestjs/event-emitter
@nestjs/jwt
@nestjs/mapped-types
@nestjs/passport
@nestjs/schedule
@nestjs/typeorm
@newrelic/security-agent
@ngageoint/color-js
@ngageoint/grid-js
@ngageoint/mgrs-js
@nicolo-ribaudo/semver-v6
@npmcli/agent
@npmcli/ci-detect
@npmcli/config
@npmcli/disparity-colors
@npmcli/fs
@npmcli/git
@npmcli/installed-package-contents
@npmcli/map-workspaces
@npmcli/metavuln-calculator
@npmcli/move-file
@npmcli/name-from-folder
@npmcli/node-gyp
@npmcli/package-json
@npmcli/promise-spawn
@npmcli/query
@npmcli/redact
@oclif/fixpack
@octokit/openapi-types
@octokit/plugin-enterprise-rest
@octokit/tsconfig
@open-rpc/client-js
@openapi-contrib/openapi-schema-to-json-schema
@panva/asn1.js
@panva/hkdf
@panva/oauth4webapi
@paralleldrive/cuid2
@peculiar/json-schema
@phc/format
@phenomnomnominal/tsquery
@pinecone-database/pinecone
@pkgjs/parseargs
@postman/form-data
@postman/tough-cookie
@postman/tunnel-agent
@redocly/ajv
@ronradtke/react-native-markdown-display
@rtsao/scc
@rxfork/sqs-consumer
@ryansonshine/commitizen
@ryansonshine/cz-conventional-changelog
@samverschueren/stream-to-observable
@scena/dragscroll
@scena/matrix
@seald-io/binary-search-tree
@semantic-release/commit-analyzer
@semantic-release/error
@semantic-release/git
@semantic-release/github
@semantic-release/release-notes-generator
@sideway/address
@sideway/formula
@sideway/pinpoint
@sigmacomputing/babel-plugin-lodash
@sindresorhus/is
@sindresorhus/merge-streams
@sindresorhus/slugify
@sindresorhus/transliterate
@sinonjs/commons
@sinonjs/fake-timers
@sinonjs/text-encoding
@smoya/multi-parser
@snyk/github-codeowners
@so-ric/colorspace
@socket.io/component-emitter
@stoplight/ordered-object-literal
@stoplight/yaml-ast-parser
@supabase/auth-js
@supabase/gotrue-js
@supabase/node-fetch
@supabase/postgrest-js
@supabase/realtime-js
@supabase/ssr
@supabase/supabase-js
@swaggerexpert/cookie
@swaggerexpert/json-pointer
@szmarczak/http-timer
@tailwindcss/forms
@tailwindcss/typography
@tediousjs/connection-string
@teppeis/multimaps
@testing-library/cypress
@testing-library/dom
@testing-library/jest-dom
@testing-library/jest-native
@testing-library/react
@testing-library/user-event
@testing-library/vue
@timsuchanek/copy
@tippy.js/react
@tokens-studio/sd-transforms
@tokens-studio/types
@tootallnate/once
@trysound/sax
@tyriar/fibonacci-heap
@u-wave/react-vimeo
@ungap/promise-all-settled
@ungap/structured-clone
@ungap/url-search-params
@vendia/serverless-express
@videojs/http-streaming
@videojs/vhs-utils
@vvo/tzdb
@wdio/testrail-reporter
@withabound/node-sdk
@xhmikosr/os-filter-obj
@xmldom/is-dom-node
@xmldom/xmldom
a-sync-waterfall
abbrev
abort-controller
abortcontroller-polyfill
abstract-level
abstract-leveldown
abstract-logging
accepts
accesscontrol
accounting
acorn
acorn-dynamic-import
acorn-globals
acorn-import-assertions
acorn-import-phases
acorn-jsx
acorn-jsx-walk
activedirectory2
add
add-stream
address
adjust-sourcemap-loader
adler-32
aes-decrypter
aes-js
after
agent-base
agentkeepalive
aggregate-error
airbnb-js-shims
airbnb-style
ajv
ajv-draft-04
ajv-errors
ajv-formats
ajv-keywords
alce
alfy
align-text
alphanum-sort
alterschema
amdefine
amdi18n-loader
amocha
amqp-connection-manager
amqplib
analsorhost-simple-bs
angular2-template-loader
animejs
anser
ansi
ansi-align
ansi-colors
ansi-escapes
ansi-html
ansi-html-community
ansi-regex
ansi-styles
ansi-to-html
ansi-wordwrap
any-observable
any-promise
any-shell-escape
anymatch
apache-crypt
ape-doc
ape-formatting
ape-releasing
ape-reporting
ape-tmpl
app-root-path
apparatus
append-buffer
append-field
append-transform
appium-android-driver
appium-chromedriver
appium-remote-debugger
appium-xcode
application-config-path
applicationinsights
aproba
arch
archiver-utils
are-we-there-yet
arg
argparse
args
argv-formatter
arity-n
arr-diff
arr-filter
arr-flatten
arr-map
arr-union
array-buffer-byte-length
array-differ
array-each
array-equal
array-find
array-find-index
array-flatten
array-from
array-ify
array-includes
array-initial
array-last
array-slice
array-sort
array-timsort
array-tree-filter
array-union
array-uniq
array-unique
array.prototype.at
array.prototype.filter
array.prototype.find
array.prototype.findlastindex
array.prototype.tosorted
arraybuffer.prototype.slice
arraybuffer.slice
arrgv
arrify
arrivals
as-array
as-table
asn1
asn1-ber
asn1.js
assert
assert-plus
assertion-error
asset-generator
assign-symbols
assignment
assume
ast-module-types
ast-types
ast-types-flow
astral-regex
astring
async
async-done
async-exit-hook
async-foreach
async-listener
async-lock
async-settle
async-to-gen
async-value
asynckit
asyncstorage-down
at-least-node
athena-client
atlassian-openapi
atomic-batcher
atomic-sleep
attr-accept
audio-decode
aurelia-tools
auth0
auth0-deploy-cli
auth0-js
author-regex
auto-bind
autocannon
autoprefixer-loader
ava
available-typed-arrays
avsc
avvio
await-exec
await-outside
await-to-js
awilix
aws-sdk-client-mock-vitest
aws-sign2
aws4
axe-playwright
axios
axios-ntlm
axios-proxy-builder
axios-retry
axobject-query
b4a
babel-eslint
babel-extract-comments
babel-helper-vue-jsx-merge-props
babel-istanbul
babel-minify-webpack-plugin
babel-plugin-add-react-displayname
babel-plugin-array-includes
babel-plugin-dev-expression
babel-plugin-dynamic-import-node
babel-plugin-dynamic-import-webpack
babel-plugin-espower
babel-plugin-inline-import
babel-plugin-inline-react-svg
babel-plugin-istanbul
babel-plugin-lodash
babel-plugin-macros
babel-plugin-react-native-nodeify-hack
babel-plugin-react-remove-properties
babel-plugin-react-require
babel-plugin-react-transform
babel-plugin-static-fs
babel-plugin-transform-builtin-extend
babel-plugin-transform-decorators-legacy
babel-preset-airbnb
babel-preset-current-node-syntax
babel-preset-es2015
babel-preset-es2015-loose
babel-preset-es2015-node4
babel-preset-es2015-node6
babel-preset-node6
babel-tape-runner
babelify
bach
backo2
backslash
bad-words
bail
balanced-match
bare-events
bare-path
bare-stream
base
base-64
base-x
base16
base32
base32-encode
base32.js
base64-arraybuffer
base64-js
base64-stream
base64-url
base64id
basic-auth
basic-auth-connect
basic-ftp
batch
batch-processor
batch-updater
bayes-classifier
bcrypt-pbkdf
bcryptjs
bech32
beeper
before-after-hook
bent
better-npm-run
bidi-js
big-integer
bin-links
bin-version
bin-version-check
binary-extensions
binary-version
binary-version-check
binascii
bindings
bintrees
bip32
bitcoinjs-lib
bitmap-sdf
bl
blob-polyfill
blueimp-md5
bn.js
body-parser
bole
bonjour
boolify
boom
bootstrap
bootstrap-icons
bootstrap-sass
bootstrap-select
boxen
bplist-creator
bplist-parser
brace-expansion
braces
brcast
breakword
brittle
broadcast-channel
broccoli-ember-hbs-template-compiler
broccoli-node-info
brorand
browser-assert
browser-cache-mock
browser-process-hrtime
browser-resolve
browser-split
browser-stdout
browser-sync-webpack-plugin
browserify-aes
browserify-cipher
browserify-derequire
browserify-des
browserify-istanbul
browserify-rsa
browserify-shim
browserify-sign
browserstack
browserstack-local
bs-logger
bson
buble
buf-compare
buffer
buffer-alloc
buffer-alloc-unsafe
buffer-builder
buffer-compare
buffer-crc32
buffer-fill
buffer-from
buffer-image-size
buffer-indexof
buffer-indexof-polyfill
buffer-more-ints
buffer-to-arraybuffer
buffer-writer
buffer-xor
bufferstreams
bufrw
builtin-modules
builtin-status-codes
builtins
bundle
bundle-collapser
bundle-name
bunyan-debug-stream
busboy
byline
byte-size
bytes
bytes-iec
bytewise
bytewise-core
c8
cacache
cache-base
cache-loader
cache-manager
cache-manager-fs-hash
cache-manager-redis-store
cacheable-lookup
cached-path-relative
cachedir
caching-transform
calculator-sim
call-bind
call-bind-apply-helpers
call-bound
call-me-maybe
caller-callsite
caller-path
callsite-record
callsites
camelcase
camelcase-css
camelcase-keys
caniuse-api
canonical-path
canvas-confetti
capitalize
capture-stack-trace
card-validator
cardinal
case
case-anything
case-sensitive-paths-webpack-plugin
caseless
cassandra-driver
casual
catering
catharsis
caw
center-align
cfb
chai
chai-as-promised
chai-spies
chai-string
chai-subset
chai-xml
chalk
chalk-cli
chalk-template
change-case
change-file-extension
char-regex
character-entities
character-entities-html4
character-entities-legacy
character-parser
character-reference-invalid
charenc
charset
chart.piecelabel.js
chartjs-chart-sankey
chartjs-plugin-annotation
chartjs-plugin-datalabels
check-disk-space
check-error
check-more-types
check-types
cheerio
cheerio-select
chevrotain-allstar
chokidar
chownr
chroma-js
chrome-trace-event
chromium-bidi
chrono-node
chunkd
ci-info
cidr-regex
cipher-base
circular-dependency-plugin
circular-json-es6
cjson
clamp
clamscan
clap
class-is
class-utils
classcat
classnames
clean-css
clean-deep
clean-git-ref
clean-regexp
clean-stack
clean-yaml-object
clear
clear-cut
clear-module
cli
cli-boxes
cli-color
cli-columns
cli-cursor
cli-handle-unhandled
cli-highlight
cli-spinners
cli-sprintf-format
cli-truncate
cli-width
cliff
clipboard-copy
cliui
clone
clone-buffer
clone-deep
clone-regexp
clone-response
clone-stats
cloudevents
cloudinary
cls-bluebird
cls-hooked
clsx
cluster-key-slot
cmd-shim
co-body
coa
codacy-coverage
code
code-error-fragment
code-excerpt
code-point-at
codecov
codemirror
codepage
collapse-white-space
collection-map
collection-utils
collection-visit
color
color-convert
color-js
color-name
color-parse
color-rgba
color-string
color-support
color2k
colorette
colornames
colors
colorspace
combine-errors
combined-stream
combokeys
comma-separated-tokens
command-exists
command-line-args
command-line-usage
commander
comment-json
comment-parser
commist
commit-and-tag-version
commitizen
common-ancestor-path
common-path-prefix
common-tags
compare-func
compare-versions
compat
complex.js
component-classes
component-emitter
component-type
compose-middleware
compress-commons
compressible
compression
compression-webpack-plugin
compute-gcd
compute-lcm
compute-scroll-into-view
concat-stream
concat-with-sourcemaps
concaveman
concurrently
condense-newlines
confidence
config-chain
configstore
connect
connect-history-api-fallback
connect-redis
connection-string
connection-string-parser
console-browserify
console-log-level
console-polyfill
console.table
consolidate
consolidated-events
constantinople
constants-browserify
content-disposition
content-security-policy-builder
content-type
contentful-resolve-response
contentful-sdk-core
continuation-local-storage
conventional-commit-types
conver
convert-hrtime
convert-source-map
convert-to-spaces
cookie
cookie-parser
cookie-session
cookie-signature
cookiejar
cookies
cookies-next
cooking-vue2
copy
copy-anything
copy-text-to-clipboard
copy-to-clipboard
copyfiles
core-assert
core-util-is
cors
corser
cos-nodejs-sdk-v5
cose-base
cosmjs-types
country-code-enum
country-list
countup.js
coveralls
cp-file
cpx
cpy
cpy-cli
crc-32
create-ecdh
create-error-class
create-hash
create-hmac
crelt
cron
cron-parser
cron-validate
croner
cross-argv
cross-env
crypt
crypto
crypto-browserify
crypto-hash
crypto-js
crypto-random-string
csprng
csrf
css-blank-pseudo
css-color-keywords
css-color-names
css-declaration-sorter
css-has-pseudo
css-line-break
css-loader
css-mediaquery
css-minimizer-webpack-plugin
css-modules-loader-core
css-modules-typescript-loader
css-prefers-color-scheme
css-select
css-select-base-adapter
css-selector-parser
css-selector-tokenizer
css-shorthand-properties
css-tree
css-unit-converter
css-what
css.escape
cssdb
cssesc
cssfilter
csso
cssom
cssstyle
csv
csv-parse
csv-parser
csv-stringify
csv-writer
cucumber-pretty
cuid
cuint
currency-cloud
currently-unhandled
curve25519-js
custom-error-instance
custom-event-polyfill
customerio-node
customize-cra
cycle
cyclist
cypress-axe
cypress-file-upload
cypress-localstorage-commands
cypress-mochawesome-reporter
cypress-recurse
cypress-repeat
cypress-terminal-report
cypress-testrail-simple
cypress-xpath
cytoscape
cytoscape-fcose
cz-conventional-changelog
cz-customizable
d
dag-map
dagre
dagre-d3-es
dagrejs
damerau-levenshtein
dargs
dashify
dat.gui
data-uri-to-buffer
data-urls
data-view-buffer
data-view-byte-length
data-view-byte-offset
database-types
datadog-metrics
datatables.net
date-and-time
date-time
dateformat
db-errors
dc-polyfill
de-indent
debounce
debug
debug-fabulous
decamelize
decamelize-keys
decimal.js
decimal.js-light
decko