@elizaos/plugin-telegram 2.0.0-alpha.4 → 2.0.0-alpha.537

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": "@elizaos/plugin-telegram",
3
- "version": "2.0.0-alpha.4",
3
+ "version": "2.0.0-alpha.537",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -12,36 +12,49 @@
12
12
  "types": "./dist/index.d.ts",
13
13
  "default": "./dist/index.js"
14
14
  }
15
+ },
16
+ "./account-auth-service": {
17
+ "import": {
18
+ "types": "./dist/account-auth-service.d.ts",
19
+ "default": "./dist/account-auth-service.js"
20
+ }
15
21
  }
16
22
  },
17
23
  "files": [
18
24
  "dist"
19
25
  ],
20
26
  "dependencies": {
21
- "@elizaos/core": "2.0.0-alpha.3",
22
- "@telegraf/types": "7.1.0",
23
- "@types/node": "^25.0.3",
27
+ "@elizaos/core": "^2.0.0-alpha.537",
28
+ "@telegraf/types": "^7.1.0",
29
+ "@types/node": "^24.0.10",
24
30
  "strip-literal": "^3.0.0",
25
31
  "telegraf": "4.16.3",
32
+ "telegram": "^2.26.22",
26
33
  "type-detect": "^4.1.0",
27
- "typescript": "^5.9.3"
34
+ "typescript": "^6.0.0"
28
35
  },
29
36
  "devDependencies": {
30
- "@biomejs/biome": "^2.3.11",
37
+ "@elizaos/config": "1.7.3-alpha.4",
38
+ "@eslint/js": "^10.0.0",
39
+ "@typescript-eslint/eslint-plugin": "^8.22.0",
40
+ "@typescript-eslint/parser": "^8.22.0",
41
+ "eslint": "^10.0.0",
42
+ "prettier": "^3.8.3",
43
+ "tsup": "^8.5.1",
31
44
  "vitest": "^4.0.0"
32
45
  },
33
46
  "scripts": {
34
- "build": "bun run build.ts",
35
- "dev": "bun --hot build.ts",
47
+ "build": "tsup",
48
+ "dev": "tsup --watch",
36
49
  "test": "vitest run",
37
50
  "test:watch": "vitest",
38
- "lint": "bunx @biomejs/biome check --write --unsafe .",
51
+ "lint": "bunx @biomejs/biome lint --write --unsafe ./src && prettier --write ./src",
52
+ "lint:check": "bunx @biomejs/biome lint ./src",
39
53
  "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
40
- "format": "bunx @biomejs/biome format --write .",
41
- "format:check": "bunx @biomejs/biome format .",
42
- "lint:check": "bunx @biomejs/biome check .",
43
- "build:ts": "bun run build",
44
- "typecheck": "tsc --noEmit"
54
+ "format": "prettier --write ./src",
55
+ "format:check": "prettier --check ./src",
56
+ "test:e2e": "node ../../packages/app-core/scripts/run-local-plugin-live-smoke.mjs",
57
+ "test:live": "bun run test:e2e"
45
58
  },
46
59
  "publishConfig": {
47
60
  "access": "public"
@@ -79,14 +92,5 @@
79
92
  "sensitive": false
80
93
  }
81
94
  }
82
- },
83
- "milaidy": {
84
- "platforms": [
85
- "node"
86
- ],
87
- "runtime": "node",
88
- "platformDetails": {
89
- "node": "ESM build available via exports.import"
90
- }
91
95
  }
92
96
  }