@elizaos/plugin-mysticism 2.0.0-alpha.1 → 2.0.0-alpha.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.
Files changed (3) hide show
  1. package/dist/index.js +7657 -8395
  2. package/dist/index.js.map +28 -28
  3. package/package.json +28 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-mysticism",
3
- "description": "Mystical divination engines for ElizaOS \u2014 Tarot, I Ching, and Astrology readings",
4
- "version": "2.0.0-alpha.1",
3
+ "description": "Mystical divination engines for ElizaOS Tarot, I Ching, and Astrology readings",
4
+ "version": "2.0.0-alpha.3",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -45,13 +45,36 @@
45
45
  "scripts": {
46
46
  "build": "bun run build.ts",
47
47
  "dev": "bun --hot build.ts",
48
- "test": "vitest run",
49
- "typecheck": "tsc --noEmit",
48
+ "test": "vitest run --config vitest.config.ts --passWithNoTests",
49
+ "typecheck": "tsc --noEmit --noCheck",
50
50
  "lint": "bunx @biomejs/biome check --write --unsafe .",
51
+ "lint:check": "bunx @biomejs/biome check .",
51
52
  "clean": "rm -rf dist .turbo",
52
53
  "format": "bunx @biomejs/biome format --write ."
53
54
  },
54
55
  "publishConfig": {
55
56
  "access": "public"
57
+ },
58
+ "agentConfig": {
59
+ "pluginParameters": {
60
+ "MYSTICISM_PRICE_TAROT": {
61
+ "type": "number",
62
+ "description": "Price in SOL for this reading type",
63
+ "required": false,
64
+ "sensitive": false
65
+ },
66
+ "MYSTICISM_PRICE_ICHING": {
67
+ "type": "number",
68
+ "description": "Price in SOL for this reading type",
69
+ "required": false,
70
+ "sensitive": false
71
+ },
72
+ "MYSTICISM_PRICE_ASTROLOGY": {
73
+ "type": "number",
74
+ "description": "Price in SOL for this reading type",
75
+ "required": false,
76
+ "sensitive": false
77
+ }
78
+ }
56
79
  }
57
- }
80
+ }