create-synclets 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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/cli.js +4 -0
  3. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # create-synclets
2
+
3
+ CLI tool to scaffold a new Synclets application.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npm create synclets
9
+ ```
10
+
11
+ Coming soon!
package/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('🔄 create-synclets - Coming soon!');
4
+ console.log('This CLI will help you scaffold a new Synclets app.');
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "create-synclets",
3
+ "version": "0.1.0",
4
+ "author": "jamesgpearce",
5
+ "repository": "github:tinyplex/create-synclets",
6
+ "license": "MIT",
7
+ "homepage": "https://synclets.org",
8
+ "description": "The CLI to build a new app using Synclets, an open, storage-agnostic, sync engine development kit.",
9
+ "keywords": [
10
+ "sync engine",
11
+ "storage-agnostic",
12
+ "synchronization",
13
+ "database",
14
+ "local first"
15
+ ],
16
+ "type": "module",
17
+ "bin": {
18
+ "create-synclets": "./cli.js"
19
+ },
20
+ "dependencies": {
21
+ "prompts": "^2.4.2"
22
+ },
23
+ "engines": {
24
+ "node": ">=18.0.0"
25
+ }
26
+ }