create-ziex 0.1.0-dev.1

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
+ # Create Ziex
2
+
3
+ This package provides `bun create ziex` command to create a new Ziex application.
package/build.zig ADDED
@@ -0,0 +1,5 @@
1
+ const std = @import("std");
2
+
3
+ pub fn build(b: *std.Build) void {
4
+ _ = b; // stub
5
+ }
package/build.zig.zon ADDED
@@ -0,0 +1,7 @@
1
+ .{
2
+ .name = .create_ziex,
3
+ .version = "0.0.1",
4
+ .minimum_zig_version = "0.15.2",
5
+ .paths = .{""},
6
+ .fingerprint = 0xa53594cec9c2ad31,
7
+ }
package/package.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "name": "create-ziex",
3
+ "version": "0.1.0-dev.1"
4
+ }