airship-cli 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/.github/workflows/npm-publish.yml +27 -0
- package/README.MD +57 -0
- package/package.json +2 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
|
3
|
+
|
|
4
|
+
name: Public NPM Package
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
release:
|
|
8
|
+
types: [created]
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
id-token: write # Required for OIDC
|
|
12
|
+
contents: read
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
publish:
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v4
|
|
19
|
+
|
|
20
|
+
- uses: actions/setup-node@v4
|
|
21
|
+
with:
|
|
22
|
+
node-version: '24'
|
|
23
|
+
registry-url: 'https://registry.npmjs.org'
|
|
24
|
+
- run: npm ci
|
|
25
|
+
- run: npm run build --if-present
|
|
26
|
+
- run: npm test
|
|
27
|
+
- run: npm publish
|
package/README.MD
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Airship CLI
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/airship-cli)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Give it a try in your own terminal!
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npx airship-cli@latest
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
# Installation
|
|
14
|
+
|
|
15
|
+
<table>
|
|
16
|
+
<tr>
|
|
17
|
+
<th>npm</th>
|
|
18
|
+
<th>yarn</th>
|
|
19
|
+
<th>bun</th>
|
|
20
|
+
</tr>
|
|
21
|
+
<tr>
|
|
22
|
+
<td>
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
npm install airship-cli
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
</td>
|
|
29
|
+
<td>
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
yarn add airship-cli
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
</td>
|
|
36
|
+
<td>
|
|
37
|
+
|
|
38
|
+
```sh
|
|
39
|
+
bun add airship-cli
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
</td>
|
|
43
|
+
</tr>
|
|
44
|
+
</table>
|
|
45
|
+
|
|
46
|
+
# Usage
|
|
47
|
+
|
|
48
|
+
Simply run the command below and you're ready to grab data from the platform API. It's that simple!
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
airship
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
# License
|
|
55
|
+
|
|
56
|
+
Copyright (c) 2026 Max McDaniel
|
|
57
|
+
Licensed under the GPL 3.0 license.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "airship-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A CLI Tool to interact with Airship's API endpoints.",
|
|
5
5
|
"main": "out/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"scripts": {
|
|
11
|
+
"test": "echo \"No test specified\"",
|
|
11
12
|
"tsc": "tsc --w"
|
|
12
13
|
},
|
|
13
14
|
"author": "Max McDaniel",
|