pkgbld 1.16.5 → 1.16.6

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/dist/index.js +3 -6
  2. package/package.json +3 -6
package/dist/index.js CHANGED
@@ -561,18 +561,15 @@ async function writeJson(path, json) {
561
561
  await fs.writeFile(path, JSON.stringify(json, null, 2) + '\n');
562
562
  }
563
563
 
564
- var version = "1.16.5";
564
+ var version = "1.16.6";
565
565
  var license = "MIT";
566
566
  var name = "pkgbld";
567
- var author = {
568
- name: "Konstantin Shutkin"
569
- };
567
+ var author = "Konstantin Shutkin";
570
568
  var bin = "./dist/index.js";
571
569
  var main = "./dist/index.js";
572
570
  var typings = "./dist/index.d.ts";
573
571
  var files = [
574
- "dist",
575
- "LICENSE"
572
+ "dist"
576
573
  ];
577
574
  var engines = {
578
575
  node: ">=16"
package/package.json CHANGED
@@ -1,16 +1,13 @@
1
1
  {
2
- "version": "1.16.5",
2
+ "version": "1.16.6",
3
3
  "license": "MIT",
4
4
  "name": "pkgbld",
5
- "author": {
6
- "name": "Konstantin Shutkin"
7
- },
5
+ "author": "Konstantin Shutkin",
8
6
  "bin": "./dist/index.js",
9
7
  "main": "./dist/index.js",
10
8
  "typings": "./dist/index.d.ts",
11
9
  "files": [
12
- "dist",
13
- "LICENSE"
10
+ "dist"
14
11
  ],
15
12
  "engines": {
16
13
  "node": ">=16"