@cloudcannon/configuration-types 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 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Configuration types
2
2
 
3
- Contains types and generates JSON Schemas for the CloudCannon configuration file.
3
+ Contains types and generates JSON Schemas for the [CloudCannon](https://cloudcannon.com/) configuration file.
4
+
5
+ [<img src="https://img.shields.io/npm/v/@cloudcannon%2Fconfiguration-types?logo=npm" alt="version badge">](https://www.npmjs.com/package/@cloudcannon%2Fconfiguration-types)
4
6
 
5
7
  ## Run
6
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudcannon/configuration-types",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Contains types and generates JSON Schemas for the CloudCannon configuration file.",
5
5
  "author": "CloudCannon <support@cloudcannon.com>",
6
6
  "license": "MIT",
@@ -26,7 +26,8 @@
26
26
  "prebuild": "mkdir -p build && rimraf --glob 'build/*.json'",
27
27
  "test": "exit 0"
28
28
  },
29
- "types": "./src/main.d.ts",
29
+ "main": "./src/index.d.ts",
30
+ "types": "./src/index.d.ts",
30
31
  "publishConfig": {
31
32
  "access": "public"
32
33
  },