@pdpp/cli 0.1.0-beta.1 → 0.1.0-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdpp/cli",
3
- "version": "0.1.0-beta.1",
3
+ "version": "0.1.0-beta.2",
4
4
  "description": "Command-line tools for PDPP providers.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,9 +1,5 @@
1
- import { readFileSync } from 'node:fs';
2
-
3
- const manifest = JSON.parse(readFileSync(new URL('../package.json', import.meta.url), 'utf8'));
4
-
5
- export const PDPP_CLI_PACKAGE_NAME = manifest.name;
6
- export const PDPP_CLI_BIN_NAME = Object.keys(manifest.bin)[0];
1
+ export const PDPP_CLI_PACKAGE_NAME = '@pdpp/cli';
2
+ export const PDPP_CLI_BIN_NAME = 'pdpp';
7
3
  export const PDPP_CLI_VERSION_POLICY = 'beta';
8
4
  export const PDPP_CLI_PACKAGE_SPECIFIER = `${PDPP_CLI_PACKAGE_NAME}@${PDPP_CLI_VERSION_POLICY}`;
9
5
  export const PDPP_CLI_DEFAULT_CLIENT_ID = 'pdpp_cli';