@rsvelte/fmt-darwin-arm64 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 +17 -0
- package/package.json +26 -0
- package/rsvelte-fmt +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @rsvelte/fmt-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Prebuilt [`@rsvelte/fmt`](https://www.npmjs.com/package/@rsvelte/fmt) binary for **macOS arm64** (Apple Silicon).
|
|
4
|
+
|
|
5
|
+
**Do not install this package directly.** Install the loader package:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -D @rsvelte/fmt
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
The loader will pull in the correct platform binary (this one, if you're on Apple Silicon macOS) via `optionalDependencies` and invoke it transparently.
|
|
12
|
+
|
|
13
|
+
Part of the [rsvelte](https://github.com/baseballyama/rsvelte) project — a Rust port of the Svelte 5 compiler and surrounding toolchain.
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rsvelte/fmt-darwin-arm64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Prebuilt rsvelte-fmt binary for darwin-arm64",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/baseballyama/rsvelte.git",
|
|
9
|
+
"directory": "apps/npm/fmt-darwin-arm64"
|
|
10
|
+
},
|
|
11
|
+
"os": [
|
|
12
|
+
"darwin"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"arm64"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"rsvelte-fmt"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"prepack": "chmod +x rsvelte-fmt"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
}
|
|
26
|
+
}
|
package/rsvelte-fmt
ADDED
|
Binary file
|