@zeus-js/compiler-native-darwin-x64 0.1.1-beta.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.
package/LICENSE ADDED
@@ -0,0 +1,8 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Baicie
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files, to deal in the Software
7
+ without restriction, including without limitation the rights to use, copy,
8
+ modify, merge, publish, distribute, sublicense, and/or sell copies.
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # @zeus-js/compiler-native-darwin-x64
2
+
3
+ macOS x64 native binary for the Zeus Rust compiler. This package is selected
4
+ automatically by `@zeus-js/compiler-native`.
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare const binding: typeof import('@zeus-js/compiler-native')
2
+ export = binding
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ 'use strict'
2
+ module.exports = require('./zeus-compiler-native.darwin-x64.node')
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@zeus-js/compiler-native-darwin-x64",
3
+ "version": "0.1.1-beta.1",
4
+ "description": "Zeus Rust compiler native binary for macOS x64",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/baicie/zeus.git",
9
+ "directory": "packages/core/compiler-native-darwin-x64"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "provenance": true
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "types": "./index.d.ts",
18
+ "require": "./index.js",
19
+ "default": "./index.js"
20
+ },
21
+ "./package.json": {
22
+ "types": "./index.d.ts",
23
+ "require": "./package.json",
24
+ "default": "./package.json"
25
+ }
26
+ },
27
+ "files": [
28
+ "index.js",
29
+ "index.d.ts",
30
+ "zeus-compiler-native.darwin-x64.node",
31
+ "README.md",
32
+ "LICENSE"
33
+ ],
34
+ "cpu": [
35
+ "x64"
36
+ ],
37
+ "engines": {
38
+ "node": "^22.18.0 || >=24.11.0"
39
+ },
40
+ "main": "index.js",
41
+ "os": [
42
+ "darwin"
43
+ ],
44
+ "types": "index.d.ts"
45
+ }