playcademy 0.13.10 → 0.13.11

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.
package/dist/index.js CHANGED
@@ -5474,6 +5474,9 @@ async function ensurePlaycademyTypes() {
5474
5474
  const workersTypesVersion = cliPkg?.devDependencies?.["@cloudflare/workers-types"] || "latest";
5475
5475
  const playcademyPkg = {
5476
5476
  private: true,
5477
+ dependencies: {
5478
+ hono: "latest"
5479
+ },
5477
5480
  devDependencies: {
5478
5481
  "@cloudflare/workers-types": workersTypesVersion
5479
5482
  }
@@ -1,6 +1,6 @@
1
1
  /// <reference types="./.playcademy/node_modules/@cloudflare/workers-types" />
2
2
 
3
- import type { Context as HonoContext } from 'hono'
3
+ import type { Context as HonoContext } from './.playcademy/node_modules/hono'
4
4
 
5
5
  declare global {
6
6
  interface PlaycademyEnv {
package/dist/utils.js CHANGED
@@ -1558,6 +1558,9 @@ async function ensurePlaycademyTypes() {
1558
1558
  const workersTypesVersion = cliPkg?.devDependencies?.["@cloudflare/workers-types"] || "latest";
1559
1559
  const playcademyPkg = {
1560
1560
  private: true,
1561
+ dependencies: {
1562
+ hono: "latest"
1563
+ },
1561
1564
  devDependencies: {
1562
1565
  "@cloudflare/workers-types": workersTypesVersion
1563
1566
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playcademy",
3
- "version": "0.13.10",
3
+ "version": "0.13.11",
4
4
  "type": "module",
5
5
  "module": "./dist/index.js",
6
6
  "main": "./dist/index.js",