playcademy 0.14.3 → 0.14.4-alpha.2

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.
@@ -0,0 +1,3 @@
1
+ declare const version: string;
2
+
3
+ export { version };
@@ -0,0 +1,82 @@
1
+ // package.json
2
+ var package_default = {
3
+ name: "playcademy",
4
+ version: "0.14.4",
5
+ type: "module",
6
+ exports: {
7
+ ".": {
8
+ types: "./dist/index.d.ts",
9
+ import: "./dist/index.js",
10
+ require: "./dist/index.js"
11
+ },
12
+ "./db": {
13
+ types: "./dist/db.d.ts",
14
+ import: "./dist/db.js",
15
+ require: "./dist/db.js"
16
+ },
17
+ "./utils": {
18
+ import: "./dist/utils.js",
19
+ types: "./dist/utils.d.ts"
20
+ },
21
+ "./constants": {
22
+ import: "./dist/constants.js",
23
+ types: "./dist/constants.d.ts"
24
+ },
25
+ "./types": {
26
+ types: "./dist/index.d.ts"
27
+ },
28
+ "./version": {
29
+ import: "./dist/version.js",
30
+ types: "./dist/version.d.ts"
31
+ }
32
+ },
33
+ main: "./dist/index.js",
34
+ module: "./dist/index.js",
35
+ bin: {
36
+ playcademy: "./dist/index.js"
37
+ },
38
+ files: [
39
+ "dist"
40
+ ],
41
+ scripts: {
42
+ build: "bun build.ts",
43
+ dev: "PLAYCADEMY_BASE_URL=http://localhost:5174 bun src/index.ts",
44
+ pub: "bun publish.ts"
45
+ },
46
+ dependencies: {
47
+ "@inquirer/prompts": "^7.8.6",
48
+ "@playcademy/sdk": "workspace:*",
49
+ chokidar: "^4.0.3",
50
+ colorette: "^2.0.20",
51
+ commander: "^14.0.1",
52
+ dedent: "catalog:",
53
+ "drizzle-kit": "^0.31.5",
54
+ "drizzle-orm": "^0.44.6",
55
+ esbuild: "^0.25.10",
56
+ hono: "^4.9.9",
57
+ "json-colorizer": "^3.0.1",
58
+ miniflare: "^4.20251008.0",
59
+ open: "^10.2.0"
60
+ },
61
+ devDependencies: {
62
+ "@cloudflare/workers-types": "^4.20251011.0",
63
+ "@playcademy/constants": "workspace:*",
64
+ "@playcademy/data": "workspace:*",
65
+ "@playcademy/edge-play": "workspace:*",
66
+ "@playcademy/timeback": "workspace:*",
67
+ "@playcademy/utils": "workspace:*",
68
+ "@types/bun": "latest",
69
+ bumpp: "^10.2.3",
70
+ rollup: "^4.50.2",
71
+ "rollup-plugin-dts": "^6.2.3"
72
+ },
73
+ peerDependencies: {
74
+ typescript: "^5"
75
+ }
76
+ };
77
+
78
+ // src/version.ts
79
+ var version = package_default.version;
80
+ export {
81
+ version
82
+ };
package/package.json CHANGED
@@ -1,9 +1,7 @@
1
1
  {
2
2
  "name": "playcademy",
3
- "version": "0.14.3",
3
+ "version": "0.14.4-alpha.2",
4
4
  "type": "module",
5
- "module": "./dist/index.js",
6
- "main": "./dist/index.js",
7
5
  "exports": {
8
6
  ".": {
9
7
  "types": "./dist/index.d.ts",
@@ -25,14 +23,20 @@
25
23
  },
26
24
  "./types": {
27
25
  "types": "./dist/index.d.ts"
26
+ },
27
+ "./version": {
28
+ "import": "./dist/version.js",
29
+ "types": "./dist/version.d.ts"
28
30
  }
29
31
  },
30
- "files": [
31
- "dist"
32
- ],
32
+ "main": "./dist/index.js",
33
+ "module": "./dist/index.js",
33
34
  "bin": {
34
35
  "playcademy": "./dist/index.js"
35
36
  },
37
+ "files": [
38
+ "dist"
39
+ ],
36
40
  "scripts": {
37
41
  "build": "bun build.ts",
38
42
  "dev": "PLAYCADEMY_BASE_URL=http://localhost:5174 bun src/index.ts",