@sparktype/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 ADDED
@@ -0,0 +1,3 @@
1
+ Published apart of the sparktype project.
2
+
3
+ https://github.com/hntrl/sparktype
package/bin/sparktype ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ const path = require("path");
2
+ module.exports = path.join(__dirname, "bin", "sparktype");
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@sparktype/darwin-arm64",
3
+ "version": "0.1.0",
4
+ "description": "sparktype binary for macOS ARM64 (Apple Silicon)",
5
+ "os": [
6
+ "darwin"
7
+ ],
8
+ "cpu": [
9
+ "arm64"
10
+ ],
11
+ "main": "index.js",
12
+ "files": [
13
+ "bin/",
14
+ "index.js"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/hntrl/sparktype.git"
19
+ },
20
+ "license": "MIT"
21
+ }