@plugjs/zip 0.6.4 → 0.6.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/README.md +2 -1
  2. package/package.json +24 -3
package/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  Zip File Plugin for the PlugJS Build System
2
2
  ===========================================
3
3
 
4
- Prototype build system from [Juit GmbH](https://www.juit.com/)
4
+ This plugin allows the PlugJS build system to create `.zip` files, useful when
5
+ deploying (for example) on AWS Lambda.
5
6
 
6
7
  * [Copyright Notice](https://github.com/plugjs/plug/blob/main/NOTICE.md)
7
8
  * [License](https://github.com/plugjs/plug/blob/main/LICENSE.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/zip",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -38,11 +38,32 @@
38
38
  "yauzl": "^3.1.3"
39
39
  },
40
40
  "peerDependencies": {
41
- "@plugjs/plug": "0.6.4"
41
+ "@plugjs/plug": "0.6.6"
42
42
  },
43
43
  "files": [
44
44
  "*.md",
45
45
  "dist/",
46
46
  "src/"
47
- ]
47
+ ],
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+ssh://git@github.com/plugjs/plug.git"
51
+ },
52
+ "keywords": [
53
+ "archive",
54
+ "build",
55
+ "compile",
56
+ "ecmascript",
57
+ "javascript",
58
+ "node",
59
+ "plugjs",
60
+ "transpile",
61
+ "typescript",
62
+ "yazl",
63
+ "zip"
64
+ ],
65
+ "bugs": {
66
+ "url": "https://github.com/plugjs/plug/issues"
67
+ },
68
+ "homepage": "https://github.com/plugjs/plug/blob/main/workspaces/zip/#readme"
48
69
  }