maverick-ai-cli 3.0.0 → 3.0.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maverick-ai-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
11
|
"start": "node src/index.js",
|
|
12
|
-
"dev": "nodemon src/index.js"
|
|
12
|
+
"dev": "nodemon src/index.js",
|
|
13
|
+
"postinstall": "prisma generate"
|
|
13
14
|
},
|
|
14
15
|
"keywords": [],
|
|
15
16
|
"author": "CodeMaverick-143 AKA Arpit Sarang",
|
|
@@ -19,7 +19,7 @@ import prisma from "../../../lib/db.js";
|
|
|
19
19
|
dotenv.config();
|
|
20
20
|
|
|
21
21
|
const URL = "https://maverick-cli.onrender.com";
|
|
22
|
-
const CLIENT_ID =
|
|
22
|
+
const CLIENT_ID = "Ov23lij4Gu7H5XTLE2jY";
|
|
23
23
|
|
|
24
24
|
// ~/.better-auth/token.json
|
|
25
25
|
export const CONFIG_DIR = path.join(os.homedir(), ".better-auth");
|