├── FUNDING.yml ├── README.md └── profile └── README.md /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Boshen] 2 | open_collective: oxc 3 | polar: oxc 4 | thanks_dev: u/gh/oxc-project 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | OXC Logo 3 |

4 | -------------------------------------------------------------------------------- /profile/README.md: -------------------------------------------------------------------------------- 1 |

2 | OXC Logo 3 |

4 | 5 |
6 | 7 | [![oxc.rs][website-badge]][website-url] 8 | 9 |
10 | 11 | [website-badge]: https://img.shields.io/badge/oxc.rs-blue 12 | [website-url]: https://oxc.rs 13 | 14 | Oxc is an MIT licensed open source project, governed by: 15 | 16 | * [@boshen] - Project Lead 17 | * [@yyx990803] - [voidzero] 18 | * and the [core team](https://oxc.rs/team.html) 19 | 20 | Oxc is also a project of [VoidZero Inc.][voidzero], see our annoucement [Announcing VoidZero - Next Generation Toolchain for JavaScript](https://voidzero.dev/blog). 21 | 22 | If you have requirements for JavaScript tools at scale, please [get in touch](https://forms.gle/WQgjyzYJpwurpxWKA)! 23 | 24 |

25 | 26 | My sponsors 27 | 28 |

29 | 30 | [@boshen]: https://github.com/boshen 31 | [@yyx990803]: https://github.com/yyx990803 32 | [Vite]: https://github.com/vitejs 33 | [npmjs.com]: https://npmjs.com 34 | [crates.io]: https://crates.io 35 | [marketplace.visualstudio.com/vscode]: https://marketplace.visualstudio.com/vscode 36 | [voidzero]: https://voidzero.dev 37 | 38 | --- 39 | 40 | Major projects in this organization: 41 | 42 | * [oxc](https://github.com/oxc-project/oxc) - parser, transformer, minifier, linter, formatter 43 | * [oxc-project.github.io](https://github.com/oxc-project/oxc-project.github.io) - [oxc.rs](https://oxc.rs) 44 | * [playground](https://github.com/oxc-project/playground) - [playground.oxc.rs](https://playground.oxc.rs) 45 | * [tsgolint](https://github.com/oxc-project/tsgolint) - Type aware linting for oxlint 46 | * [oxc-resolver](https://github.com/oxc-project/oxc-resolver) - esm / cjs module resolution 47 | * [oxc-sourcemap](https://github.com/oxc-project/oxc-sourcemap) - Forked version of rust-sourcemap 48 | * [oxc-index-vec](https://github.com/oxc-project/oxc-index-vec) - Forked version of index_vec 49 | * [oxc-browserslist](https://github.com/oxc-project/oxc-browserslist) - Rust port of browserslist 50 | * [oxc-miette](https://github.com/oxc-project/oxc-miette) - Forked version of miette 51 | * [javascript-globals](https://github.com/oxc-project/javascript-globals) - Rust fork of [globals](https://www.npmjs.com/package/globals) 52 | * [unicode-id-start](https://github.com/oxc-project/unicode-id-start) - Determine whether characters have the ID_Start or ID_Continue properties 53 | 54 | | Tool | npmjs.com | crates.io | Weekly Downloads | 55 | | ---- | --------- | --------- | ---------------- | 56 | | Linter | [oxlint](https://npmjs.com/package/oxlint) | | ![NPM Downloads](https://img.shields.io/npm/dw/oxlint?label=npm) | 57 | | Type-Aware Linter | [oxlint-tsgolint](https://npmjs.com/package/oxlint-tsgolint) | | ![NPM Downloads](https://img.shields.io/npm/dw/oxlint-tsgolint?label=npm) | 58 | | Formatter | [oxfmt](https://npmjs.com/package/oxfmt) | | ![NPM Downloads](https://img.shields.io/npm/dw/oxfmt?label=npm) | 59 | | Parser | [oxc-parser](https://www.npmjs.com/package/oxc-parser) | [oxc_parser](https://crates.io/crates/oxc_parser) | ![NPM Downloads](https://img.shields.io/npm/dw/oxc-parser?label=npm) | 60 | | Transformer | [oxc-transform](https://www.npmjs.com/package/oxc-transform) | [oxc_transformer](https://crates.io/crates/oxc_transformer) | ![NPM Downloads](https://img.shields.io/npm/dw/oxc-transform?label=npm) | 61 | | Minifier | [oxc-minifiy](https://www.npmjs.com/package/oxc-minify) | [oxc_minifier](https://crates.io/crates/oxc_minifier) | ![NPM Downloads](https://img.shields.io/npm/dw/oxc-minify?label=npm) | 62 | | Resolver | [oxc-resolver](https://www.npmjs.com/package/oxc-resolver) | [oxc_resolver](https://crates.io/crates/oxc_resolver) | ![NPM Downloads](https://img.shields.io/npm/dw/oxc-resolver?label=npm) | 63 | --------------------------------------------------------------------------------