@cascadetui/core-darwin-x64 0.1.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 (3) hide show
  1. package/README.md +3 -0
  2. package/index.ts +1 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @cascadetui/core-darwin-x64
2
+
3
+ Prebuilt native package for @cascadetui/core on darwin-x64.
package/index.ts ADDED
@@ -0,0 +1 @@
1
+ throw new Error("Native binary is not bundled for this platform in this repository build.")
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@cascadetui/core-darwin-x64",
3
+ "version": "0.1.1",
4
+ "description": "Prebuilt darwin-x64 binaries for @cascadetui/core",
5
+ "main": "index.ts",
6
+ "types": "index.ts",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/kirosnn/cascade",
11
+ "directory": "packages/core"
12
+ },
13
+ "keywords": [
14
+ "prebuild",
15
+ "prebuilt"
16
+ ],
17
+ "os": [
18
+ "darwin"
19
+ ],
20
+ "cpu": [
21
+ "x64"
22
+ ]
23
+ }