@west7014/lifx-lan 1.0.3 → 1.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/CHANGELOG.md +12 -0
  2. package/package.json +6 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # LIFX LAN Client: Changelog
2
+ ---
3
+ ## 1.0.0: Initial commit/release
4
+ > Initial package release and commit of all existing files.
5
+ ## 1.0.1: URL Fixes
6
+ > Updated the URL within package.json under 'repository' to conform to the NPM syntax.
7
+ ## 1.0.2: Renamed Package
8
+ > Renamed the package from `lifx-lan` to `@west7014/lifx-lan` to prevent any issues with NPM.
9
+ ## 1.0.3: Updated License
10
+ > Changed the license within 'readme.md' from MIT to MPL-2.0 to resolve the two licenses issue.
11
+ ## 1.0.4: Added Changelog
12
+ > Added this changelog file to record changes in a more readable manner compared to Git history.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@west7014/lifx-lan",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "a simple package that aims to bring all available features to LIFX devices over LAN with some API-based features as well",
5
5
  "keywords": [
6
6
  "lifx",
@@ -21,7 +21,8 @@
21
21
  "./index.js",
22
22
  "./index.d.ts",
23
23
  "LICENSE",
24
- "./README.md"
24
+ "./README.md",
25
+ "./CHANGELOG.md"
25
26
  ],
26
27
  "license": "MPL-2.0",
27
28
  "repository": {
@@ -34,8 +35,10 @@
34
35
  "scripts": {
35
36
  "test": "echo \"Error: no test specified\" && exit 1"
36
37
  },
38
+ "dependencies": {
39
+ "axios": ">=1.0.0"
40
+ },
37
41
  "peerDependencies": {
38
- "axios": ">=1.0.0",
39
42
  "dotenv": "16.4.5"
40
43
  },
41
44
  "peerDependenciesMeta": {