@ghostery/config 0.0.3 → 0.0.4

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # @ghostery/config-types
1
+ # @ghostery/config
2
2
 
3
3
  Shared TypeScript types for Ghostery remote configuration.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @ghostery/config-types
8
+ npm install @ghostery/config
9
9
  ```
10
10
 
11
11
  ## Usage
@@ -13,8 +13,8 @@ npm install @ghostery/config-types
13
13
  ### In TypeScript/JavaScript projects:
14
14
 
15
15
  ```typescript
16
- import type { Config, Platform, Action, Flag } from '@ghostery/config-types';
17
- import { isPlatform, isAction, isFlag } from '@ghostery/config-types';
16
+ import type { Config, Platform, Action, Flag } from '@ghostery/config';
17
+ import { isPlatform, isAction, isFlag } from '@ghostery/config';
18
18
 
19
19
  // Use the types
20
20
  const config: Config = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghostery/config",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Shared TypeScript types for Ghostery configuration",
5
5
  "files": [
6
6
  "dist"