-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
187 lines (187 loc) · 5.72 KB
/
package.json
File metadata and controls
187 lines (187 loc) · 5.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "@rndrntwrk/plugin-555arcade",
"version": "0.1.0-beta.1",
"description": "elizaOS plugin for controlling 555 arcade game, quest, leaderboard, and learning operations via Agent API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./mastery": {
"import": "./dist/mastery/index.js",
"types": "./dist/mastery/index.d.ts"
},
"./intelligence": {
"import": "./dist/intelligence/index.js",
"types": "./dist/intelligence/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./milaidy": {
"import": "./dist/milaidy/factory.js",
"types": "./dist/milaidy/factory.d.ts"
},
"./openapi": {
"import": "./dist/openapi/fragments.js",
"types": "./dist/openapi/fragments.d.ts"
},
"./compat": {
"import": "./dist/compat/index.js",
"types": "./dist/compat/index.d.ts"
},
"./lib/transport/action-kit": {
"import": "./dist/lib/transport/action-kit.js",
"types": "./dist/lib/transport/action-kit.d.ts"
},
"./lib/transport/agent-auth": {
"import": "./dist/lib/transport/agent-auth.js",
"types": "./dist/lib/transport/agent-auth.d.ts"
}
},
"files": [
"dist",
"config",
"README.md",
"LICENSE",
"docs",
"skills",
"elizaos.plugin.json"
],
"scripts": {
"build": "bun run clean && tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"release:check": "node ./scripts/release-check.mjs",
"release:manifest": "node ./scripts/release-manifest.mjs",
"release:preview": "bun run typecheck && bun run release:check && npm_config_cache=/tmp/npm-cache npm pack --dry-run",
"prepublishOnly": "bun run build"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ARCADE555_BASE_URL": {
"type": "string",
"description": "Public 555 Arcade base URL.",
"required": false
},
"ARCADE555_AGENT_API_KEY": {
"type": "string",
"description": "Preferred arcade agent API key used for token exchange.",
"required": false,
"sensitive": true
},
"ARCADE555_AGENT_TOKEN": {
"type": "string",
"description": "Static arcade bearer fallback when API-key token exchange is unavailable.",
"required": false,
"sensitive": true
},
"ARCADE555_DEFAULT_SESSION_ID": {
"type": "string",
"description": "Optional session ID to auto-bind",
"required": false
},
"ARCADE555_REQUIRE_APPROVALS": {
"type": "boolean",
"description": "Require approvals for mutating actions",
"default": true
},
"ARCADE555_SCORE_CAPTURE_API_URL": {
"type": "string",
"description": "Optional score capture API base URL (fallback: FIVE55_SCORE_CAPTURE_API_URL)",
"required": false
},
"ARCADE555_LEADERBOARD_API_URL": {
"type": "string",
"description": "Optional leaderboard API base URL (fallback: FIVE55_LEADERBOARD_API_URL)",
"required": false
},
"ARCADE555_QUESTS_API_URL": {
"type": "string",
"description": "Optional quests API base URL (fallback: FIVE55_QUESTS_API_URL)",
"required": false
},
"ARCADE555_BATTLES_API_URL": {
"type": "string",
"description": "Optional battles API base URL (fallback: FIVE55_BATTLES_API_URL)",
"required": false
},
"ARCADE555_BATTLES_CREATE_ENDPOINT": {
"type": "string",
"description": "Optional battles create endpoint override (fallback: FIVE55_BATTLES_CREATE_ENDPOINT)",
"required": false
},
"ARCADE555_REWARDS_API_URL": {
"type": "string",
"description": "Optional rewards API base URL (fallback: FIVE55_REWARDS_API_URL)",
"required": false
},
"ARCADE555_SOCIAL_API_URL": {
"type": "string",
"description": "Optional social API base URL (fallback: FIVE55_SOCIAL_API_URL)",
"required": false
},
"ARCADE555_ADMIN_API_URL": {
"type": "string",
"description": "Optional admin API base URL (fallbacks include FIVE55_ADMIN_API_URL and legacy admin env vars)",
"required": false
},
"ARCADE555_ADMIN_BEARER_TOKEN": {
"type": "string",
"description": "Optional admin bearer token (fallbacks include FIVE55_ADMIN_BEARER_TOKEN and legacy admin token env vars)",
"required": false,
"sensitive": true
},
"ARCADE555_GITHUB_TOKEN": {
"type": "string",
"description": "Optional GitHub token for repo listing (fallback: GITHUB_API_TOKEN / ALICE_GH_TOKEN)",
"required": false,
"sensitive": true
}
}
},
"elizaos": {
"displayName": "555 Arcade",
"configSchemaFile": "./config/plugin-config.schema.json",
"pluginUiSchemaFile": "./config/plugin-ui.schema.json"
},
"keywords": [
"elizaos",
"plugin",
"arcade",
"games",
"leaderboard",
"quests",
"555"
],
"author": "rndrntwrk",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/rndrntwrk/555-arcade-plugin.git"
},
"bugs": {
"url": "https://github.com/rndrntwrk/555-arcade-plugin/issues"
},
"homepage": "https://docs.rndrntwrk.com/arcade/overview",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@elizaos/core": "^1.7.0"
},
"devDependencies": {
"@elizaos/core": "^1.7.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}