@friendlyrobot/discord-pi-agent 0.4.7 → 0.4.8

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 (1) hide show
  1. package/package.json +8 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@friendlyrobot/discord-pi-agent",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "Reusable Discord gateway bridge for persistent pi agent sessions",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,10 +27,13 @@
27
27
  "scripts": {
28
28
  "test:watch": "vitest",
29
29
  "test": "vitest run",
30
- "update-deps": "bun add @mariozechner/pi-ai@latest @mariozechner/pi-coding-agent@latest marked@latest discord.js@latest dotenv@latest prettier@latest; bun add -d @types/node@latest typescript@latest vitest@latest @vitest/ui@latest",
30
+ "update-deps": "npx npm-check-updates",
31
31
  "format": "prettier --write .",
32
- "build": "rm -rf dist && bun build ./src/index.ts --outdir ./dist --target node --format esm --packages external && tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationMap false",
33
- "typecheck": "tsc --noEmit -p tsconfig.json"
32
+ "build:01-clean": "rm -rf dist",
33
+ "build:02-tsgo": "tsgo -p tsconfig.json --emitDeclarationOnly --declaration --declarationMap false",
34
+ "build:03-build": "bun build ./src/index.ts --outdir ./dist --target node --format esm --packages external",
35
+ "build": "bun run --sequential 'build:*'",
36
+ "typecheck": "tsgo --noEmit -p tsconfig.json"
34
37
  },
35
38
  "dependencies": {
36
39
  "@mariozechner/pi-ai": "^0.70.2",
@@ -42,8 +45,8 @@
42
45
  },
43
46
  "devDependencies": {
44
47
  "@types/node": "^25.6.0",
48
+ "@typescript/native-preview": "^7.0.0-dev.20260424.2",
45
49
  "@vitest/ui": "^4.1.5",
46
- "typescript": "^6.0.3",
47
50
  "vitest": "^4.1.5"
48
51
  }
49
52
  }