@agent-foundry/replay-server 1.0.2 → 1.0.3

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/package.json CHANGED
@@ -1,15 +1,20 @@
1
1
  {
2
2
  "name": "@agent-foundry/replay-server",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Video rendering service for AgentFoundry mini-game replays",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
+ "files": [
8
+ "dist",
9
+ "README.md"
10
+ ],
7
11
  "scripts": {
8
12
  "dev": "tsx watch src/server/index.ts",
9
13
  "build": "tsc",
10
14
  "start": "node dist/server/index.js",
11
15
  "render": "tsx src/cli/render.ts",
12
- "clean": "rimraf dist output"
16
+ "clean": "rimraf dist output",
17
+ "prepublishOnly": "pnpm run clean && pnpm run build"
13
18
  },
14
19
  "dependencies": {
15
20
  "@agent-foundry/replay": "^1.0.1",
@@ -36,4 +41,4 @@
36
41
  "publishConfig": {
37
42
  "access": "public"
38
43
  }
39
- }
44
+ }