jumpgate 0.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 +29 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/package.json +32 -0
package/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Jumpgate CLI - Namespace Placeholder
|
2
|
+
|
3
|
+
This is a placeholder package to reserve the `jumpgate` namespace on npm.
|
4
|
+
|
5
|
+
## Status
|
6
|
+
|
7
|
+
This package is currently a placeholder. The actual jumpgate CLI implementation is under development as part of the AirPilot project.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
```bash
|
12
|
+
npm install -g jumpgate
|
13
|
+
```
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
```bash
|
18
|
+
jumpgate
|
19
|
+
```
|
20
|
+
|
21
|
+
Currently outputs a placeholder message indicating the package is under development.
|
22
|
+
|
23
|
+
## Development
|
24
|
+
|
25
|
+
The actual implementation is being developed at: https://github.com/shaneholloman/airpilot
|
26
|
+
|
27
|
+
## License
|
28
|
+
|
29
|
+
MIT
|
package/dist/index.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;GAKG"}
|
package/dist/index.js
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
"use strict";
|
3
|
+
/**
|
4
|
+
* Jumpgate CLI - Namespace Placeholder
|
5
|
+
*
|
6
|
+
* This is a placeholder package to reserve the 'jumpgate' namespace on npm.
|
7
|
+
* The actual implementation is under development.
|
8
|
+
*/
|
9
|
+
console.log('Jumpgate CLI - Namespace Placeholder');
|
10
|
+
console.log('This package is currently a placeholder to reserve the namespace.');
|
11
|
+
console.log('The actual jumpgate CLI implementation is under development.');
|
12
|
+
console.log('Visit https://github.com/shaneholloman/airpilot for more information.');
|
13
|
+
process.exit(0);
|
14
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAEA;;;;;GAKG;AAEH,OAAO,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;AACpD,OAAO,CAAC,GAAG,CAAC,mEAAmE,CAAC,CAAC;AACjF,OAAO,CAAC,GAAG,CAAC,8DAA8D,CAAC,CAAC;AAC5E,OAAO,CAAC,GAAG,CAAC,uEAAuE,CAAC,CAAC;AAErF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC"}
|
package/package.json
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"name": "jumpgate",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"description": "Namespace reservation placeholder for jumpgate CLI tool",
|
5
|
+
"main": "dist/index.js",
|
6
|
+
"types": "dist/index.d.ts",
|
7
|
+
"bin": {
|
8
|
+
"jumpgate": "dist/index.js"
|
9
|
+
},
|
10
|
+
"scripts": {
|
11
|
+
"build": "tsc",
|
12
|
+
"prepublishOnly": "npm run build"
|
13
|
+
},
|
14
|
+
"keywords": [
|
15
|
+
"cli",
|
16
|
+
"jumpgate",
|
17
|
+
"placeholder"
|
18
|
+
],
|
19
|
+
"author": "Shane Holloman",
|
20
|
+
"license": "MIT",
|
21
|
+
"devDependencies": {
|
22
|
+
"typescript": "^5.0.0",
|
23
|
+
"@types/node": "^20.0.0"
|
24
|
+
},
|
25
|
+
"engines": {
|
26
|
+
"node": ">=18.0.0"
|
27
|
+
},
|
28
|
+
"files": [
|
29
|
+
"dist/**/*",
|
30
|
+
"README.md"
|
31
|
+
]
|
32
|
+
}
|