@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 +8 -0
- package/README.md +4 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/package.json +45 -0
- package/zeus-compiler-native.darwin-x64.node +0 -0
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
package/index.d.ts
ADDED
package/index.js
ADDED
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
|
+
}
|
|
Binary file
|