miragedev-sdk 0.5.0 → 0.5.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 +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ AI-first SDK for building SAAS applications with Next.js. Build production-ready
|
|
|
32
32
|
### Option 1: Create New Project (Recommended)
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
npx miragedev create my-saas
|
|
35
|
+
npx miragedev-sdk create my-saas
|
|
36
36
|
cd my-saas
|
|
37
37
|
npm run dev
|
|
38
38
|
```
|
|
@@ -62,7 +62,7 @@ npm install posthog-node # For analytics
|
|
|
62
62
|
npm install @upstash/redis # For limits
|
|
63
63
|
npm install @trigger.dev/sdk # For jobs
|
|
64
64
|
|
|
65
|
-
npx miragedev init
|
|
65
|
+
npx miragedev-sdk init
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
**What gets created:**
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "miragedev-sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "AI-first SDK for building SAAS applications with Next.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"bin": {
|
|
10
|
-
"miragedev": "./dist/cli/index.js"
|
|
10
|
+
"miragedev-sdk": "./dist/cli/index.js"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|