@svg-toolkit/language-server-linux-ia32-gnu 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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Kaj Kowalski
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @svg-toolkit/language-server-linux-ia32-gnu
2
+
3
+ Prebuilt `svg-language-server` binary for **linux · ia32 · glibc** (rustc target `i686-unknown-linux-gnu`).
4
+ The platform-specific package of [`svg-language-server`](https://npm.im/svg-language-server).
5
+
6
+ ## Do I install this?
7
+
8
+ Usually not. Install the main package and npm picks the matching binary
9
+ for your platform automatically:
10
+
11
+ ```sh
12
+ npm install svg-language-server
13
+ ```
14
+
15
+ This package is listed in `svg-language-server`'s `optionalDependencies`. npm resolves the one
16
+ whose `os`/`cpu`/`libc` matches your machine and skips the rest. Depending on it
17
+ directly pins you to a single platform, so prefer `svg-language-server` for anything portable.
18
+
19
+ ## Standalone use
20
+
21
+ The package is a working CLI in its own right — its bin points straight at the
22
+ bundled binary, so on a matching machine it runs without the facade:
23
+
24
+ ```sh
25
+ npx --package @svg-toolkit/language-server-linux-ia32-gnu svg-language-server --version
26
+ ```
27
+
28
+ ## Contents
29
+
30
+ - `svg-language-server`: prebuilt native binary under `bin/`.
31
+ - No dependencies, no install scripts, no network access.
32
+
33
+ Released under the same license as `svg-language-server` (see `LICENSE`).
Binary file
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@svg-toolkit/language-server-linux-ia32-gnu",
3
+ "version": "0.1.0",
4
+ "description": "Prebuilt svg-language-server i686-unknown-linux-gnu binary; selected automatically by npm, also runnable standalone via npx.",
5
+ "keywords": [
6
+ "svg",
7
+ "language-server",
8
+ "prebuilt",
9
+ "binary",
10
+ "native",
11
+ "linux",
12
+ "ia32",
13
+ "glibc"
14
+ ],
15
+ "license": "MIT",
16
+ "author": "Kaj Kowalski <info@kajkowalski.nl>",
17
+ "homepage": "https://github.com/kjanat/svg/tree/HEAD/crates/svg-language-server",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/kjanat/svg.git"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/kjanat/svg/issues"
24
+ },
25
+ "os": [
26
+ "linux"
27
+ ],
28
+ "cpu": [
29
+ "ia32"
30
+ ],
31
+ "libc": [
32
+ "glibc"
33
+ ],
34
+ "bin": {
35
+ "svg-language-server": "bin/svg-language-server"
36
+ },
37
+ "exports": {
38
+ "./package.json": "./package.json"
39
+ },
40
+ "files": [
41
+ "bin/"
42
+ ]
43
+ }