oxlint-react-compiler-experimental 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "oxlint-react-compiler-experimental",
3
- "version": "0.0.1",
4
- "description": "Linter for the JavaScript Oxidation Compiler",
3
+ "version": "0.0.3",
4
+ "description": "Linter for the JavaScript Oxidation Compiler (React Compiler Experimental)",
5
5
  "keywords": [
6
6
  "eslint",
7
7
  "javascript",
8
8
  "linter",
9
9
  "oxc",
10
10
  "oxlint",
11
+ "react-compiler",
11
12
  "typescript"
12
13
  ],
13
14
  "homepage": "https://oxc.rs/docs/guide/usage/linter",
@@ -16,12 +17,9 @@
16
17
  "author": "Boshen and oxc contributors",
17
18
  "repository": {
18
19
  "type": "git",
19
- "url": "git+https://github.com/oxc-project/oxc",
20
+ "url": "git+https://github.com/nicksrandall/oxc.git",
20
21
  "directory": "npm/oxlint"
21
22
  },
22
- "funding": {
23
- "url": "https://github.com/sponsors/Boshen"
24
- },
25
23
  "bin": {
26
24
  "oxlint": "bin/oxlint"
27
25
  },
@@ -44,21 +42,6 @@
44
42
  "default": "./dist/plugins-dev.js"
45
43
  }
46
44
  },
47
- "peerDependencies": {
48
- "oxlint-tsgolint": ">=0.15.0"
49
- },
50
- "peerDependenciesMeta": {
51
- "oxlint-tsgolint": {
52
- "optional": true
53
- }
54
- },
55
- "napi": {
56
- "binaryName": "oxlint",
57
- "packageName": "@oxlint/binding",
58
- "targets": [
59
- "aarch64-apple-darwin"
60
- ]
61
- },
62
45
  "engines": {
63
46
  "node": "^20.19.0 || >=22.12.0"
64
47
  },
package/README.md DELETED
@@ -1,59 +0,0 @@
1
- <p align="center">
2
- <br>
3
- <br>
4
- <a href="https://oxc.rs" target="_blank" rel="noopener noreferrer">
5
- <picture>
6
- <source media="(prefers-color-scheme: dark)" srcset="https://oxc.rs/oxc-light.svg">
7
- <source media="(prefers-color-scheme: light)" srcset="https://oxc.rs/oxc-dark.svg">
8
- <img alt="Oxc logo" src="https://oxc.rs/oxc-dark.svg" height="60">
9
- </picture>
10
- </a>
11
- <br>
12
- <br>
13
- <br>
14
- </p>
15
-
16
- <div align="center">
17
-
18
- [![MIT licensed][license-badge]][license-url]
19
- [![Build Status][ci-badge]][ci-url]
20
- [![Code Coverage][code-coverage-badge]][code-coverage-url]
21
- [![Sponsors][sponsors-badge]][sponsors-url]
22
-
23
- [![Discord chat][discord-badge]][discord-url]
24
- [![Playground][playground-badge]][playground-url]
25
-
26
- [discord-badge]: https://img.shields.io/discord/1079625926024900739?logo=discord&label=Discord
27
- [discord-url]: https://discord.gg/9uXCAwqQZW
28
- [license-badge]: https://img.shields.io/badge/license-MIT-blue.svg
29
- [license-url]: https://github.com/oxc-project/oxc/blob/main/LICENSE
30
- [ci-badge]: https://github.com/oxc-project/oxc/actions/workflows/ci.yml/badge.svg?event=push&branch=main
31
- [ci-url]: https://github.com/oxc-project/oxc/actions/workflows/ci.yml?query=event%3Apush+branch%3Amain
32
- [npm-badge]: https://img.shields.io/npm/v/oxlint/latest?color=brightgreen
33
- [npm-url]: https://npmx.dev/package/oxlint/v/latest
34
- [code-size-badge]: https://img.shields.io/github/languages/code-size/oxc-project/oxc
35
- [code-size-url]: https://github.com/oxc-project/oxc
36
- [code-coverage-badge]: https://codecov.io/github/oxc-project/oxc/branch/main/graph/badge.svg
37
- [code-coverage-url]: https://codecov.io/gh/oxc-project/oxc
38
- [sponsors-badge]: https://img.shields.io/github/sponsors/Boshen
39
- [sponsors-url]: https://github.com/sponsors/Boshen
40
- [playground-badge]: https://img.shields.io/badge/Playground-blue?color=9BE4E0
41
- [playground-url]: https://playground.oxc.rs/
42
-
43
- </div>
44
-
45
- # ⚓ Oxc
46
-
47
- The Oxidation Compiler is creating a suite of high-performance tools for JavaScript and TypeScript.
48
-
49
- ## Oxlint
50
-
51
- This is the linter for oxc.
52
-
53
- See [usage instructions](https://oxc.rs/docs/guide/usage/linter).
54
-
55
- Run
56
-
57
- - `npx --yes oxlint@latest` in your JavaScript / TypeScript codebase and see it complete in milliseconds. No configurations are required.
58
- - `npx oxlint@latest --help` for quick usage instructions.
59
- - `npx oxlint@latest --rules` for the list of rules.