@elizaos/plugin-groq 2.0.0-alpha.7 → 2.0.0-alpha.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 +16 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-groq",
3
- "version": "2.0.0-alpha.7",
3
+ "version": "2.0.0-alpha.8",
4
4
  "type": "module",
5
5
  "main": "dist/cjs/index.node.cjs",
6
6
  "module": "dist/node/index.node.js",
@@ -34,15 +34,27 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@ai-sdk/groq": "^3.0.4",
37
- "@elizaos/core": "next",
37
+ "@elizaos/core": "alpha",
38
38
  "ai": "^6.0.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@biomejs/biome": "^2.3.11",
42
+ "@types/bun": "^1.3.10",
42
43
  "@types/node": "^25.0.3",
43
- "bun-types": "^1.2.0",
44
44
  "typescript": "^5.9.3"
45
45
  },
46
+ "scripts": {
47
+ "dev": "bun run build.ts --watch",
48
+ "typecheck": "tsc --noEmit -p tsconfig.json",
49
+ "clean": "rm -rf dist node_modules",
50
+ "format": "bunx @biomejs/biome format --write .",
51
+ "test": "vitest run --config vitest.config.ts --passWithNoTests",
52
+ "lint": "bunx @biomejs/biome check --write --unsafe .",
53
+ "lint:check": "bunx @biomejs/biome check .",
54
+ "build": "bun run build.ts",
55
+ "build:ts": "bun run build.ts",
56
+ "format:check": "bunx @biomejs/biome format ."
57
+ },
46
58
  "publishConfig": {
47
59
  "access": "public"
48
60
  },
@@ -103,17 +115,5 @@
103
115
  "browser": "Browser-compatible build available via exports.browser",
104
116
  "node": "Node.js build available via exports.node"
105
117
  }
106
- },
107
- "scripts": {
108
- "dev": "bun run build.ts --watch",
109
- "typecheck": "tsc --noEmit -p tsconfig.json",
110
- "clean": "rm -rf dist node_modules",
111
- "format": "bunx @biomejs/biome format --write .",
112
- "test": "vitest run --config vitest.config.ts --passWithNoTests",
113
- "lint": "bunx @biomejs/biome check --write --unsafe .",
114
- "lint:check": "bunx @biomejs/biome check .",
115
- "build": "bun run build.ts",
116
- "build:ts": "bun run build.ts",
117
- "format:check": "bunx @biomejs/biome format ."
118
118
  }
119
- }
119
+ }