@aep-foundation/hono 0.1.0 → 0.1.1

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 +10 -0
  2. package/package.json +9 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @aep-foundation/hono
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#5](https://github.com/aep-foundation/aep-node/pull/5) [`8b61426`](https://github.com/aep-foundation/aep-node/commit/8b614264648d29fb6c687d71477d1795d64f31f6) Thanks [@nkavian](https://github.com/nkavian)! - Publish consistent package homepage and repository metadata.
8
+
9
+ - Updated dependencies [[`8b61426`](https://github.com/aep-foundation/aep-node/commit/8b614264648d29fb6c687d71477d1795d64f31f6)]:
10
+ - @aep-foundation/core@0.1.1
11
+ - @aep-foundation/service@0.1.1
12
+
3
13
  ## 0.1.0
4
14
 
5
15
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@aep-foundation/hono",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Hono adapter for AEP Service handlers.",
5
+ "homepage": "https://www.aep.foundation/",
5
6
  "type": "module",
6
7
  "main": "./dist/index.cjs",
7
8
  "module": "./dist/index.js",
@@ -29,8 +30,8 @@
29
30
  },
30
31
  "license": "MIT",
31
32
  "dependencies": {
32
- "@aep-foundation/core": "^0.1.0",
33
- "@aep-foundation/service": "^0.1.0"
33
+ "@aep-foundation/core": "^0.1.1",
34
+ "@aep-foundation/service": "^0.1.1"
34
35
  },
35
36
  "peerDependencies": {
36
37
  "hono": ">=4"
@@ -39,6 +40,11 @@
39
40
  "access": "public",
40
41
  "provenance": true
41
42
  },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/aep-foundation/aep-node.git",
46
+ "directory": "packages/adapters/hono"
47
+ },
42
48
  "devDependencies": {
43
49
  "hono": "^4.12.27"
44
50
  },