oxc-codegen 0.0.0 → 0.145.0

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/package.json CHANGED
@@ -1,7 +1,56 @@
1
1
  {
2
2
  "name": "oxc-codegen",
3
- "version": "0.0.0",
3
+ "version": "0.145.0",
4
+ "description": "Fast JavaScript code generator from an ESTree-compliant AST",
5
+ "keywords": [
6
+ "ast",
7
+ "code generator",
8
+ "codegen",
9
+ "estree",
10
+ "javascript",
11
+ "oxc",
12
+ "typescript"
13
+ ],
14
+ "homepage": "https://oxc.rs",
15
+ "bugs": "https://github.com/oxc-project/oxc/issues",
16
+ "license": "MIT",
17
+ "author": "Boshen and oxc contributors",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/oxc-project/oxc.git",
21
+ "directory": "packages/codegen"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
4
26
  "type": "module",
5
- "author": "GameRoMan",
6
- "license": "MIT"
7
- }
27
+ "main": "dist/index.js",
28
+ "exports": {
29
+ ".": {
30
+ "types": "./dist/index.d.ts",
31
+ "default": "./dist/index.js"
32
+ }
33
+ },
34
+ "publishConfig": {
35
+ "access": "public",
36
+ "registry": "https://registry.npmjs.org/"
37
+ },
38
+ "devDependencies": {
39
+ "@types/node": "24.1.0",
40
+ "cross-env": "^10.1.0",
41
+ "rolldown": "1.2.4",
42
+ "tsdown": "0.22.14",
43
+ "vitest": "4.1.10",
44
+ "oxc-codegen-conformance": "0.0.0",
45
+ "oxc-parser": "0.145.0"
46
+ },
47
+ "engines": {
48
+ "node": "^20.19.0 || >=22.12.0"
49
+ },
50
+ "scripts": {
51
+ "build": "node scripts/build.ts",
52
+ "build-dev": "cross-env DEBUG=true node scripts/build.ts",
53
+ "build-test": "pnpm run build-dev && pnpm --filter oxc-parser run build-test && pnpm --filter oxc-codegen-conformance run build",
54
+ "test": "vitest run --dir ./test"
55
+ }
56
+ }