easycli-config 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @easycli/config
1
+ # easycli-config
2
2
 
3
3
  Zero-config configuration loader for EasyCLI apps.
4
4
 
@@ -12,13 +12,13 @@ Zero-config configuration loader for EasyCLI apps.
12
12
  ## Installation
13
13
 
14
14
  ```bash
15
- pnpm add @easycli/config
15
+ pnpm add easycli-config
16
16
  ```
17
17
 
18
18
  ## Usage
19
19
 
20
20
  ```ts
21
- import { loadConfig } from "@easycli/config";
21
+ import { loadConfig } from "easycli-config";
22
22
 
23
23
  interface MyConfig {
24
24
  port: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easycli-config",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Configuration loader for EasyCLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",