@graypirate/tabula 1.0.0 → 1.0.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 +21 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -4,12 +4,20 @@ Core API and command-line interface for Tabula.
|
|
|
4
4
|
|
|
5
5
|
## Global Installation
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Install the Core package and `tabula` CLI with Bun:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
bun add --global @graypirate/tabula
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
Or with npm:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install --global @graypirate/tabula
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Bun is required at runtime regardless of which package manager installs it.
|
|
20
|
+
|
|
13
21
|
Verify:
|
|
14
22
|
```bash
|
|
15
23
|
command -v tabula
|
|
@@ -20,6 +28,18 @@ Upgrade or remove the Core package with Bun:
|
|
|
20
28
|
```bash
|
|
21
29
|
bun update --global @graypirate/tabula
|
|
22
30
|
bun remove --global @graypirate/tabula
|
|
31
|
+
|
|
32
|
+
# npm equivalents
|
|
33
|
+
npm update --global @graypirate/tabula
|
|
34
|
+
npm uninstall --global @graypirate/tabula
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
To import the public API in another project, install it as a project dependency:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
bun add @graypirate/tabula
|
|
41
|
+
# or
|
|
42
|
+
npm install @graypirate/tabula
|
|
23
43
|
```
|
|
24
44
|
|
|
25
45
|
## CLI
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graypirate/tabula",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Flexible object-oriented relational storage for agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"dist",
|
|
21
21
|
"README.md"
|
|
22
22
|
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/graypirate/Tabula"
|
|
26
|
+
},
|
|
23
27
|
"scripts": {
|
|
24
28
|
"build": "rm -rf dist && tsc -p tsconfig.build.json && mkdir -p dist/src/storage/db && cp src/storage/db/schema.sql dist/src/storage/db/schema.sql && chmod 755 dist/CLI/index.js",
|
|
25
29
|
"prepublishOnly": "bun run typecheck && bun test && bun run build",
|