tigris 0.0.0 → 3.7.0
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 +20 -1
- package/bin.js +8 -0
- package/package.json +31 -5
- package/index.js +0 -1
package/README.md
CHANGED
|
@@ -1 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# tigris
|
|
2
|
+
|
|
3
|
+
Command line interface for [Tigris](https://www.tigrisdata.com/) object storage.
|
|
4
|
+
|
|
5
|
+
## Get started
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx tigris init
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Connects Tigris to your AI coding agent: installs the CLI, points your editor
|
|
12
|
+
at the Tigris MCP server, and installs the Tigris agent skills.
|
|
13
|
+
|
|
14
|
+
## Documentation
|
|
15
|
+
|
|
16
|
+
[Tigris CLI docs](https://www.tigrisdata.com/docs/cli/)
|
|
17
|
+
|
|
18
|
+
## License
|
|
19
|
+
|
|
20
|
+
MIT
|
package/bin.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// `tigris` is an unscoped alias for `@tigrisdata/cli`, so `npx tigris init`
|
|
4
|
+
// works without anyone having to remember the scope. Importing the CLI's entry
|
|
5
|
+
// point runs it in this process — argv, stdio, signals and the exit code all
|
|
6
|
+
// pass through unchanged, and `--version`/help still report the real CLI
|
|
7
|
+
// (Commander takes its program name from the specs, not from this file).
|
|
8
|
+
import '@tigrisdata/cli';
|
package/package.json
CHANGED
|
@@ -1,11 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tigris",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"license": "MIT",
|
|
3
|
+
"version": "3.7.0",
|
|
4
|
+
"description": "Unscoped alias for @tigrisdata/cli — the command line interface for Tigris object storage",
|
|
7
5
|
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"tigris": "./bin.js",
|
|
8
|
+
"t3": "./bin.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin.js",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
8
14
|
"publishConfig": {
|
|
9
15
|
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"cli",
|
|
19
|
+
"object",
|
|
20
|
+
"storage",
|
|
21
|
+
"tigris",
|
|
22
|
+
"blob"
|
|
23
|
+
],
|
|
24
|
+
"author": "Tigris Data",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/tigrisdata/storage.git",
|
|
28
|
+
"directory": "packages/tigris"
|
|
29
|
+
},
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@tigrisdata/cli": "^3.7.0"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"publint": "publint"
|
|
10
36
|
}
|
|
11
|
-
}
|
|
37
|
+
}
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
console.log("Hello, world!");
|