@blitsen/linux-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/LICENSE +21 -0
- package/NOTICES.json +6226 -0
- package/NOTICES.txt +16918 -0
- package/README.md +17 -0
- package/blitsen-runtime +0 -0
- package/blitsen.node +0 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @blitsen/linux-x64
|
|
2
|
+
|
|
3
|
+
The prebuilt Blitsen native runtime for `linux-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
|
+
The binaries target glibc 2.35 (the Ubuntu 22.04 baseline) and dynamically link ALSA,
|
|
8
|
+
OpenSSL 3 and fontconfig: `libasound.so.2`, `libssl.so.3`, `libcrypto.so.3` and
|
|
9
|
+
`libfontconfig.so.1` must be available on the host.
|
|
10
|
+
|
|
11
|
+
Do not install this package directly. It is an `optionalDependency` of
|
|
12
|
+
[`blitsen`](https://www.npmjs.com/package/blitsen), whose `os` and `cpu` fields make
|
|
13
|
+
your package manager install only the one matching your machine, and its version is
|
|
14
|
+
pinned to `blitsen`'s exactly.
|
|
15
|
+
|
|
16
|
+
Blitsen is an independent project built on Blitz. It is not an official DioxusLabs
|
|
17
|
+
project and is not endorsed by DioxusLabs.
|
package/blitsen-runtime
ADDED
|
Binary file
|
package/blitsen.node
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@blitsen/linux-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Blitsen native runtime for linux-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/linux-x64"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/krazyjakee/blitsen#readme",
|
|
12
|
+
"bugs": "https://github.com/krazyjakee/blitsen/issues",
|
|
13
|
+
"os": ["linux"],
|
|
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
|
+
}
|