@fadhilp/stateql 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -8,12 +8,15 @@ Requires Node.js 22.5 or newer.
8
8
 
9
9
  ## Quick start
10
10
 
11
+ ```bash
12
+ npm install -g @fadhilp/stateql
13
+ ```
14
+
11
15
  Connect to an existing SQLite database, then run a filtered, parameterized
12
16
  query. Parameters keep values separate from SQL; `ORDER BY` makes paging
13
17
  stable, while `LIMIT` bounds work at the database.
14
18
 
15
19
  ```bash
16
- npm install --global stateql
17
20
  export STQL_SESSION=audit
18
21
  stql profile add local ./app.sqlite
19
22
  stql connect local
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@fadhilp/stateql",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Stateful, agent-oriented database CLI for safe result reuse",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/FadhilP/stateql.git"
8
+ },
5
9
  "type": "module",
6
10
  "bin": {
7
11
  "stql": "dist/src/cli.js"