@oxc-transform-react/binding-linux-riscv64-musl 0.0.1

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +40 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @oxc-transform-react/binding-linux-riscv64-musl
2
+
3
+ This is a bootstrap release used to configure npm trusted publishing. Install a newer version for the actual Oxc React transform package.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@oxc-transform-react/binding-linux-riscv64-musl",
3
+ "version": "0.0.1",
4
+ "description": "Oxc React Compiler Node API",
5
+ "keywords": [
6
+ "compiler",
7
+ "javascript",
8
+ "jsx",
9
+ "oxc",
10
+ "react",
11
+ "transform",
12
+ "tsx",
13
+ "typescript"
14
+ ],
15
+ "homepage": "https://oxc.rs",
16
+ "bugs": "https://github.com/oxc-project/oxc/issues",
17
+ "license": "MIT",
18
+ "author": "Boshen and oxc contributors",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/oxc-project/oxc.git",
22
+ "directory": "napi/transform-react"
23
+ },
24
+ "engines": {
25
+ "node": "^20.19.0 || >=22.12.0"
26
+ },
27
+ "cpu": [
28
+ "riscv64"
29
+ ],
30
+ "os": [
31
+ "linux"
32
+ ],
33
+ "libc": [
34
+ "musl"
35
+ ],
36
+ "publishConfig": {
37
+ "access": "public",
38
+ "registry": "https://registry.npmjs.org/"
39
+ }
40
+ }