@liy/agent-runner 0.1.0 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liy/agent-runner",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "Sprite-local Task Agent runner for Mote remote task execution.",
6
6
  "license": "UNLICENSED",
@@ -42,21 +42,25 @@
42
42
  "engines": {
43
43
  "node": ">=24.0.0"
44
44
  },
45
- "dependencies": {},
46
- "devDependencies": {
47
- "@types/node": "^24.5.2",
48
- "typescript": "^5.9.3",
49
- "vitest": "^3.2.4",
50
- "@liy/mote-core": "0.1.2"
51
- },
52
45
  "scripts": {
53
46
  "agent-runner": "node ./dist/bin/agent-runner.js",
54
47
  "start": "node ./dist/bin/agent-runner.js",
55
- "build:local": "rm -rf dist && tsc -p tsconfig.json && pnpm exec esbuild src/index.ts src/bin/agent-runner.ts --bundle --platform=node --format=esm --target=node24 --sourcemap --outdir=dist --outbase=src && find dist -type f \\( -name '*.js' -o -name '*.js.map' \\) ! -path 'dist/index.js' ! -path 'dist/index.js.map' ! -path 'dist/bin/agent-runner.js' ! -path 'dist/bin/agent-runner.js.map' -delete && chmod +x dist/bin/agent-runner.js",
48
+ "build:local": "node ../scripts/build-node-esm.mjs",
56
49
  "build": "pnpm --dir ../mote-core build && pnpm build:local",
57
50
  "test:local": "vitest run --passWithNoTests",
58
51
  "test": "pnpm --dir ../mote-core build && pnpm test:local",
59
52
  "typecheck:local": "tsc --noEmit -p tsconfig.json",
60
53
  "typecheck": "pnpm --dir ../mote-core build && pnpm typecheck:local"
54
+ },
55
+ "dependencies": {},
56
+ "peerDependencies": {
57
+ "@earendil-works/pi-coding-agent": "0.74.0"
58
+ },
59
+ "devDependencies": {
60
+ "@earendil-works/pi-coding-agent": "0.74.0",
61
+ "@liy/mote-core": "workspace:*",
62
+ "@types/node": "^24.5.2",
63
+ "typescript": "^5.9.3",
64
+ "vitest": "^3.2.4"
61
65
  }
62
- }
66
+ }