tigris 0.0.0 → 3.8.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/LICENSE +21 -0
- package/README.md +20 -1
- package/bin.js +8 -0
- package/package.json +31 -5
- package/index.js +0 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Tigris Data Inc
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
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.8.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.8.0"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"publint": "publint"
|
|
10
36
|
}
|
|
11
|
-
}
|
|
37
|
+
}
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
console.log("Hello, world!");
|