@blitsen/darwin-x64 0.1.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/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @blitsen/darwin-x64
2
+
3
+ The prebuilt Blitsen native runtime for `darwin-x64`: the `blitsen.node` addon used by
4
+ `blitsen run` and addon-carrying exports, plus the `blitsen-runtime` executable used by
5
+ ordinary standalone exports.
6
+
7
+ Do not install this package directly. It is an `optionalDependency` of
8
+ [`blitsen`](https://www.npmjs.com/package/blitsen), whose `os` and `cpu` fields make
9
+ your package manager install only the one matching your machine, and its version is
10
+ pinned to `blitsen`'s exactly.
11
+
12
+ Blitsen is an independent project built on Blitz. It is not an official DioxusLabs
13
+ project and is not endorsed by DioxusLabs.
Binary file
package/blitsen.node ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@blitsen/darwin-x64",
3
+ "version": "0.1.0",
4
+ "description": "Blitsen native runtime for darwin-x64",
5
+ "license": "MIT OR Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/krazyjakee/blitsen.git",
9
+ "directory": "packages/platforms/darwin-x64"
10
+ },
11
+ "homepage": "https://github.com/krazyjakee/blitsen#readme",
12
+ "bugs": "https://github.com/krazyjakee/blitsen/issues",
13
+ "os": ["darwin"],
14
+ "cpu": ["x64"],
15
+ "exports": {
16
+ "./package.json": "./package.json",
17
+ "./blitsen.node": "./blitsen.node",
18
+ "./blitsen-runtime": "./blitsen-runtime"
19
+ },
20
+ "files": ["LICENSE", "blitsen.node", "blitsen-runtime", "NOTICES.txt", "NOTICES.json"],
21
+ "preferUnplugged": true,
22
+ "publishConfig": {
23
+ "access": "public"
24
+ }
25
+ }