apifae 0.0.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 +13 -0
- package/bin/apifae.js +16 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# apifae
|
|
2
|
+
|
|
3
|
+
**Not released yet.** This package reserves the name for the [APIfae](https://apifae.com)
|
|
4
|
+
command-line interface, which is still in development. Installing it gives you a
|
|
5
|
+
command that prints this notice and exits non-zero — there is no CLI here yet.
|
|
6
|
+
|
|
7
|
+
When the CLI ships, this package becomes a thin wrapper that installs the right
|
|
8
|
+
prebuilt binary for your platform through `optionalDependencies`, and
|
|
9
|
+
`npx apifae` will work as you would expect.
|
|
10
|
+
|
|
11
|
+
Follow <https://apifae.com> for the release.
|
|
12
|
+
|
|
13
|
+
Licence: MIT OR Apache-2.0
|
package/bin/apifae.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
process.stderr.write(
|
|
5
|
+
[
|
|
6
|
+
"apifae is not released yet.",
|
|
7
|
+
"",
|
|
8
|
+
"This package holds the name for the APIfae CLI, which is still in",
|
|
9
|
+
"development. Nothing is installed and no command is available.",
|
|
10
|
+
"",
|
|
11
|
+
"Follow https://apifae.com for the release.",
|
|
12
|
+
"",
|
|
13
|
+
].join("\n")
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
process.exit(1);
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "apifae",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Placeholder for the APIfae CLI. The real command-line interface has not been released yet — see https://apifae.com",
|
|
5
|
+
"keywords": ["api", "mock", "mocking", "openapi", "cli"],
|
|
6
|
+
"homepage": "https://apifae.com",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://apifae.com",
|
|
9
|
+
"email": "team@apifae.com"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/apifae/cli.git"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT OR Apache-2.0",
|
|
16
|
+
"author": "APIfae Team <team@apifae.com>",
|
|
17
|
+
"type": "commonjs",
|
|
18
|
+
"bin": {
|
|
19
|
+
"apifae": "bin/apifae.js"
|
|
20
|
+
},
|
|
21
|
+
"files": ["bin/apifae.js", "README.md"],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18"
|
|
24
|
+
}
|
|
25
|
+
}
|