oxc-parser 0.56.0 → 0.56.2
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.
- package/README.md +1 -1
- package/browser.js +1 -0
- package/package.json +46 -12
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ The returned JavaScript AST follows the [ESTree](https://github.com/estree/estre
|
|
|
8
8
|
|
|
9
9
|
It is fully aligned with Acorn's AST, and any deviation would be considered a bug.
|
|
10
10
|
|
|
11
|
-
The returned TypeScript AST will conform to
|
|
11
|
+
The returned TypeScript AST will conform to [@typescript-eslint/typescript-estree](https://www.npmjs.com/package/@typescript-eslint/typescript-estree) in the near future.
|
|
12
12
|
|
|
13
13
|
### AST Types
|
|
14
14
|
|
package/browser.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@oxc-parser/binding-wasm32-wasi'
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxc-parser",
|
|
3
|
-
"version": "0.56.
|
|
3
|
+
"version": "0.56.2",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"browser": "browser.js",
|
|
4
6
|
"description": "Oxc Parser Node API",
|
|
5
7
|
"keywords": [
|
|
6
|
-
"
|
|
8
|
+
"oxc",
|
|
9
|
+
"parser"
|
|
7
10
|
],
|
|
8
11
|
"author": "Boshen and oxc contributors",
|
|
9
12
|
"license": "MIT",
|
|
@@ -17,25 +20,56 @@
|
|
|
17
20
|
"funding": {
|
|
18
21
|
"url": "https://github.com/sponsors/Boshen"
|
|
19
22
|
},
|
|
20
|
-
"main": "index.js",
|
|
21
23
|
"files": [
|
|
22
24
|
"index.d.ts",
|
|
23
25
|
"index.js",
|
|
26
|
+
"browser.js",
|
|
24
27
|
"bindings.js",
|
|
25
28
|
"deserialize-js.js",
|
|
26
29
|
"deserialize-ts.js"
|
|
27
30
|
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"registry": "https://registry.npmjs.org/",
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
28
35
|
"dependencies": {
|
|
29
|
-
"@oxc-project/types": "^0.56.
|
|
36
|
+
"@oxc-project/types": "^0.56.2"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=14.0.0"
|
|
40
|
+
},
|
|
41
|
+
"napi": {
|
|
42
|
+
"binaryName": "parser",
|
|
43
|
+
"packageName": "@oxc-parser/binding",
|
|
44
|
+
"targets": [
|
|
45
|
+
"x86_64-pc-windows-msvc",
|
|
46
|
+
"aarch64-pc-windows-msvc",
|
|
47
|
+
"x86_64-unknown-linux-gnu",
|
|
48
|
+
"x86_64-unknown-linux-musl",
|
|
49
|
+
"aarch64-unknown-linux-gnu",
|
|
50
|
+
"aarch64-unknown-linux-musl",
|
|
51
|
+
"armv7-unknown-linux-gnueabihf",
|
|
52
|
+
"x86_64-apple-darwin",
|
|
53
|
+
"aarch64-apple-darwin",
|
|
54
|
+
"wasm32-wasip1"
|
|
55
|
+
],
|
|
56
|
+
"wasm": {
|
|
57
|
+
"browser": {
|
|
58
|
+
"fs": false
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"dtsHeaderFile": "header.js"
|
|
30
62
|
},
|
|
31
63
|
"optionalDependencies": {
|
|
32
|
-
"@oxc-parser/binding-win32-x64-msvc": "0.56.
|
|
33
|
-
"@oxc-parser/binding-win32-arm64-msvc": "0.56.
|
|
34
|
-
"@oxc-parser/binding-linux-x64-gnu": "0.56.
|
|
35
|
-
"@oxc-parser/binding-linux-
|
|
36
|
-
"@oxc-parser/binding-linux-
|
|
37
|
-
"@oxc-parser/binding-linux-arm64-musl": "0.56.
|
|
38
|
-
"@oxc-parser/binding-
|
|
39
|
-
"@oxc-parser/binding-darwin-
|
|
64
|
+
"@oxc-parser/binding-win32-x64-msvc": "0.56.2",
|
|
65
|
+
"@oxc-parser/binding-win32-arm64-msvc": "0.56.2",
|
|
66
|
+
"@oxc-parser/binding-linux-x64-gnu": "0.56.2",
|
|
67
|
+
"@oxc-parser/binding-linux-x64-musl": "0.56.2",
|
|
68
|
+
"@oxc-parser/binding-linux-arm64-gnu": "0.56.2",
|
|
69
|
+
"@oxc-parser/binding-linux-arm64-musl": "0.56.2",
|
|
70
|
+
"@oxc-parser/binding-linux-arm-gnueabihf": "0.56.2",
|
|
71
|
+
"@oxc-parser/binding-darwin-x64": "0.56.2",
|
|
72
|
+
"@oxc-parser/binding-darwin-arm64": "0.56.2",
|
|
73
|
+
"@oxc-parser/binding-wasm32-wasi": "0.56.2"
|
|
40
74
|
}
|
|
41
75
|
}
|