@svg-toolkit/format-win32-arm64-msvc 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/README.md +33 -0
- package/bin/svg-format.exe +0 -0
- package/package.json +39 -0
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/format-win32-arm64-msvc
|
|
2
|
+
|
|
3
|
+
Prebuilt `svg-format` binary for **win32 · arm64** (rustc target `aarch64-pc-windows-msvc`).
|
|
4
|
+
The platform-specific package of [`svg-format`](https://npm.im/svg-format).
|
|
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-format
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This package is listed in `svg-format`'s `optionalDependencies`. npm resolves the one
|
|
16
|
+
whose `os`/`cpu` matches your machine and skips the rest. Depending on it
|
|
17
|
+
directly pins you to a single platform, so prefer `svg-format` 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/format-win32-arm64-msvc svg-format --version
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Contents
|
|
29
|
+
|
|
30
|
+
- `svg-format`: prebuilt native binary under `bin/`.
|
|
31
|
+
- No dependencies, no install scripts, no network access.
|
|
32
|
+
|
|
33
|
+
Released under the same license as `svg-format` (see `LICENSE`).
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@svg-toolkit/format-win32-arm64-msvc",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Prebuilt svg-format aarch64-pc-windows-msvc binary; selected automatically by npm, also runnable standalone via npx.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"svg",
|
|
7
|
+
"format",
|
|
8
|
+
"prebuilt",
|
|
9
|
+
"binary",
|
|
10
|
+
"native",
|
|
11
|
+
"win32",
|
|
12
|
+
"arm64"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "Kaj Kowalski <info@kajkowalski.nl>",
|
|
16
|
+
"homepage": "https://github.com/kjanat/svg/tree/HEAD/crates/svg-language-server",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/kjanat/svg.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/kjanat/svg/issues"
|
|
23
|
+
},
|
|
24
|
+
"os": [
|
|
25
|
+
"win32"
|
|
26
|
+
],
|
|
27
|
+
"cpu": [
|
|
28
|
+
"arm64"
|
|
29
|
+
],
|
|
30
|
+
"bin": {
|
|
31
|
+
"svg-format": "bin/svg-format.exe"
|
|
32
|
+
},
|
|
33
|
+
"exports": {
|
|
34
|
+
"./package.json": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"bin/"
|
|
38
|
+
]
|
|
39
|
+
}
|