pgai 0.14.0-beta.2 → 0.14.0-dev.19
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 +21 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# pgai
|
|
2
|
+
|
|
3
|
+
`pgai` is a thin wrapper around the [`postgresai`](../cli/README.md) CLI, intended to provide a short command name.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Run without installing:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx pgai --help
|
|
11
|
+
npx pgai init postgresql://admin@host:5432/dbname
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
This is equivalent to:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx postgresai --help
|
|
18
|
+
npx postgresai init postgresql://admin@host:5432/dbname
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgai",
|
|
3
|
-
"version": "0.14.0-
|
|
3
|
+
"version": "0.14.0-dev.19",
|
|
4
4
|
"description": "Thin wrapper for postgresai CLI (provides `npx pgai ...`)",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"private": false,
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"node": ">=18"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"postgresai": "0.14.0-
|
|
23
|
+
"postgresai": "0.14.0-dev.19"
|
|
24
24
|
}
|
|
25
25
|
}
|