omegon 0.6.1 → 0.6.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.
package/README.md CHANGED
@@ -1,24 +1,23 @@
1
1
  # Omegon
2
2
 
3
- A batteries-included extension package for the pi coding agent. Adds persistent project memory, spec-driven development, local LLM inference, image generation, web search, parallel task decomposition, a live dashboard, and quality-of-life tools — all loadable with a single install.
3
+ An opinionated distribution of [**pi**](https://github.com/badlogic/pi) the coding agent by [Mario Zechner](https://github.com/badlogic). Omegon bundles pi core with extensions for persistent project memory, spec-driven development, local LLM inference, image generation, web search, parallel task decomposition, a live dashboard, and quality-of-life tools.
4
4
 
5
- ## Installation
6
-
7
- Omegon runs on top of a patched fork of the pi coding agent (`@cwilson613/pi-coding-agent`). The fork is published to npm and tracks upstream [`badlogic/pi-mono`](https://github.com/badlogic/pi-mono) daily, adding targeted fixes for OAuth login reliability and bracketed-paste input handling.
5
+ > **Relationship to pi:** Omegon is not a fork or replacement. It packages pi as a dependency and layers extensions on top. All credit for the pi coding agent goes to Mario Zechner and the pi contributors. The core pi packages (`@cwilson613/pi-coding-agent`) track [upstream `badlogic/pi-mono`](https://github.com/badlogic/pi-mono) daily, adding targeted fixes for OAuth login reliability and bracketed-paste input handling. If you want standalone pi without Omegon's extensions, install `@mariozechner/pi-coding-agent` directly.
8
6
 
9
- **Step 1 — Install the pi binary from the patched fork:**
7
+ ## Installation
10
8
 
11
9
  ```bash
12
- npm install -g @cwilson613/pi-coding-agent
10
+ npm install -g omegon
13
11
  ```
14
12
 
15
- **Step 2 Install Omegon extensions:**
13
+ This installs the `pi` command globally. If a standalone pi package is already installed, omegon will transparently replace it (the same `pi` command, with extensions included). To switch back to standalone pi at any time:
16
14
 
17
15
  ```bash
18
- pi install https://github.com/cwilson613/omegon
16
+ npm uninstall -g omegon
17
+ npm install -g @mariozechner/pi-coding-agent
19
18
  ```
20
19
 
21
- **Step 3 — First-time setup:**
20
+ **First-time setup:**
22
21
 
23
22
  ```bash
24
23
  pi # start pi in any project directory
@@ -13,7 +13,7 @@ import { readFileSync } from "node:fs";
13
13
  import { join, dirname } from "node:path";
14
14
  import { fileURLToPath } from "node:url";
15
15
 
16
- const REPO_OWNER = "cwilson613";
16
+ const REPO_OWNER = "styrene-lab";
17
17
  const REPO_NAME = "omegon";
18
18
  const CHECK_INTERVAL_MS = 60 * 60 * 1000; // 1 hour
19
19
  const FETCH_TIMEOUT_MS = 10_000;
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "omegon",
3
- "version": "0.6.1",
4
- "description": "Omegon — agent-native software engineering platform: lifecycle management, memory, orchestration, and visualization for the pi coding agent",
3
+ "version": "0.6.3",
4
+ "description": "Omegon — an opinionated distribution of pi (by Mario Zechner) with extensions for lifecycle management, memory, orchestration, and visualization",
5
5
  "bin": {
6
6
  "omegon": "bin/pi.mjs",
7
7
  "pi": "bin/pi.mjs"
8
8
  },
9
9
  "type": "module",
10
10
  "scripts": {
11
+ "preinstall": "sh ./scripts/preinstall.sh",
11
12
  "test": "npx tsx --test tests/*.test.ts extensions/**/*.test.ts",
12
13
  "typecheck": "tsc --noEmit",
13
14
  "check:lifecycle": "npx tsx extensions/openspec/lifecycle-files.ts",
@@ -23,6 +24,14 @@
23
24
  ],
24
25
  "author": "cwilson613",
25
26
  "license": "ISC",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/styrene-lab/omegon.git"
30
+ },
31
+ "bugs": {
32
+ "url": "https://github.com/styrene-lab/omegon/issues"
33
+ },
34
+ "homepage": "https://github.com/styrene-lab/omegon#readme",
26
35
  "pi": {
27
36
  "extensions": [
28
37
  "./extensions/bootstrap",
@@ -0,0 +1,34 @@
1
+ #!/usr/bin/env sh
2
+ # Pre-install hook for omegon.
3
+ #
4
+ # Omegon is an opinionated distribution of pi (https://github.com/badlogic/pi)
5
+ # that bundles extensions, themes, skills, and memory on top of the core
6
+ # pi coding agent by Mario Zechner (@badlogic).
7
+ #
8
+ # Both omegon and the standalone pi packages (@cwilson613/pi-coding-agent,
9
+ # @mariozechner/pi-coding-agent) register a `pi` binary. npm cannot create
10
+ # a bin link if another package already owns it, so this script removes the
11
+ # standalone pi package before omegon installs — preventing an EEXIST error.
12
+ #
13
+ # This is NOT hostile. Omegon depends on and includes the same pi core.
14
+ # If you want standalone pi back, just:
15
+ # npm uninstall -g omegon
16
+ # npm install -g @mariozechner/pi-coding-agent
17
+ #
18
+ # Only acts during global installs (npm_config_global=true).
19
+
20
+ if [ "$npm_config_global" != "true" ]; then
21
+ exit 0
22
+ fi
23
+
24
+ for pkg in @cwilson613/pi-coding-agent @mariozechner/pi-coding-agent; do
25
+ if npm ls -g "$pkg" --depth=0 >/dev/null 2>&1; then
26
+ echo ""
27
+ echo " omegon: Found standalone pi package ($pkg)."
28
+ echo " omegon: Omegon bundles pi core and registers the same 'pi' command."
29
+ echo " omegon: Removing $pkg to avoid bin conflict..."
30
+ echo " omegon: (To restore standalone pi later: npm install -g $pkg)"
31
+ echo ""
32
+ npm uninstall -g "$pkg" 2>/dev/null || true
33
+ fi
34
+ done
@@ -1,534 +0,0 @@
1
- {
2
- "name": "@omegon/composition",
3
- "version": "0.1.0",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "@omegon/composition",
9
- "version": "0.1.0",
10
- "dependencies": {
11
- "@resvg/resvg-js": "^2.6.2",
12
- "gifenc": "^1.0.3",
13
- "jiti": "^2.4.2",
14
- "react": "^18.3.1",
15
- "react-dom": "^18.3.1",
16
- "satori": "^0.11.2"
17
- },
18
- "devDependencies": {
19
- "@types/react": "^18.3.12",
20
- "@types/react-dom": "^18.3.1"
21
- }
22
- },
23
- "node_modules/@resvg/resvg-js": {
24
- "version": "2.6.2",
25
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js/-/resvg-js-2.6.2.tgz",
26
- "integrity": "sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q==",
27
- "license": "MPL-2.0",
28
- "engines": {
29
- "node": ">= 10"
30
- },
31
- "optionalDependencies": {
32
- "@resvg/resvg-js-android-arm-eabi": "2.6.2",
33
- "@resvg/resvg-js-android-arm64": "2.6.2",
34
- "@resvg/resvg-js-darwin-arm64": "2.6.2",
35
- "@resvg/resvg-js-darwin-x64": "2.6.2",
36
- "@resvg/resvg-js-linux-arm-gnueabihf": "2.6.2",
37
- "@resvg/resvg-js-linux-arm64-gnu": "2.6.2",
38
- "@resvg/resvg-js-linux-arm64-musl": "2.6.2",
39
- "@resvg/resvg-js-linux-x64-gnu": "2.6.2",
40
- "@resvg/resvg-js-linux-x64-musl": "2.6.2",
41
- "@resvg/resvg-js-win32-arm64-msvc": "2.6.2",
42
- "@resvg/resvg-js-win32-ia32-msvc": "2.6.2",
43
- "@resvg/resvg-js-win32-x64-msvc": "2.6.2"
44
- }
45
- },
46
- "node_modules/@resvg/resvg-js-android-arm-eabi": {
47
- "version": "2.6.2",
48
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-android-arm-eabi/-/resvg-js-android-arm-eabi-2.6.2.tgz",
49
- "integrity": "sha512-FrJibrAk6v29eabIPgcTUMPXiEz8ssrAk7TXxsiZzww9UTQ1Z5KAbFJs+Z0Ez+VZTYgnE5IQJqBcoSiMebtPHA==",
50
- "cpu": [
51
- "arm"
52
- ],
53
- "license": "MPL-2.0",
54
- "optional": true,
55
- "os": [
56
- "android"
57
- ],
58
- "engines": {
59
- "node": ">= 10"
60
- }
61
- },
62
- "node_modules/@resvg/resvg-js-android-arm64": {
63
- "version": "2.6.2",
64
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-android-arm64/-/resvg-js-android-arm64-2.6.2.tgz",
65
- "integrity": "sha512-VcOKezEhm2VqzXpcIJoITuvUS/fcjIw5NA/w3tjzWyzmvoCdd+QXIqy3FBGulWdClvp4g+IfUemigrkLThSjAQ==",
66
- "cpu": [
67
- "arm64"
68
- ],
69
- "license": "MPL-2.0",
70
- "optional": true,
71
- "os": [
72
- "android"
73
- ],
74
- "engines": {
75
- "node": ">= 10"
76
- }
77
- },
78
- "node_modules/@resvg/resvg-js-darwin-arm64": {
79
- "version": "2.6.2",
80
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-darwin-arm64/-/resvg-js-darwin-arm64-2.6.2.tgz",
81
- "integrity": "sha512-nmok2LnAd6nLUKI16aEB9ydMC6Lidiiq2m1nEBDR1LaaP7FGs4AJ90qDraxX+CWlVuRlvNjyYJTNv8qFjtL9+A==",
82
- "cpu": [
83
- "arm64"
84
- ],
85
- "license": "MPL-2.0",
86
- "optional": true,
87
- "os": [
88
- "darwin"
89
- ],
90
- "engines": {
91
- "node": ">= 10"
92
- }
93
- },
94
- "node_modules/@resvg/resvg-js-darwin-x64": {
95
- "version": "2.6.2",
96
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-darwin-x64/-/resvg-js-darwin-x64-2.6.2.tgz",
97
- "integrity": "sha512-GInyZLjgWDfsVT6+SHxQVRwNzV0AuA1uqGsOAW+0th56J7Nh6bHHKXHBWzUrihxMetcFDmQMAX1tZ1fZDYSRsw==",
98
- "cpu": [
99
- "x64"
100
- ],
101
- "license": "MPL-2.0",
102
- "optional": true,
103
- "os": [
104
- "darwin"
105
- ],
106
- "engines": {
107
- "node": ">= 10"
108
- }
109
- },
110
- "node_modules/@resvg/resvg-js-linux-arm-gnueabihf": {
111
- "version": "2.6.2",
112
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-arm-gnueabihf/-/resvg-js-linux-arm-gnueabihf-2.6.2.tgz",
113
- "integrity": "sha512-YIV3u/R9zJbpqTTNwTZM5/ocWetDKGsro0SWp70eGEM9eV2MerWyBRZnQIgzU3YBnSBQ1RcxRZvY/UxwESfZIw==",
114
- "cpu": [
115
- "arm"
116
- ],
117
- "license": "MPL-2.0",
118
- "optional": true,
119
- "os": [
120
- "linux"
121
- ],
122
- "engines": {
123
- "node": ">= 10"
124
- }
125
- },
126
- "node_modules/@resvg/resvg-js-linux-arm64-gnu": {
127
- "version": "2.6.2",
128
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-arm64-gnu/-/resvg-js-linux-arm64-gnu-2.6.2.tgz",
129
- "integrity": "sha512-zc2BlJSim7YR4FZDQ8OUoJg5holYzdiYMeobb9pJuGDidGL9KZUv7SbiD4E8oZogtYY42UZEap7dqkkYuA91pg==",
130
- "cpu": [
131
- "arm64"
132
- ],
133
- "license": "MPL-2.0",
134
- "optional": true,
135
- "os": [
136
- "linux"
137
- ],
138
- "engines": {
139
- "node": ">= 10"
140
- }
141
- },
142
- "node_modules/@resvg/resvg-js-linux-arm64-musl": {
143
- "version": "2.6.2",
144
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-arm64-musl/-/resvg-js-linux-arm64-musl-2.6.2.tgz",
145
- "integrity": "sha512-3h3dLPWNgSsD4lQBJPb4f+kvdOSJHa5PjTYVsWHxLUzH4IFTJUAnmuWpw4KqyQ3NA5QCyhw4TWgxk3jRkQxEKg==",
146
- "cpu": [
147
- "arm64"
148
- ],
149
- "license": "MPL-2.0",
150
- "optional": true,
151
- "os": [
152
- "linux"
153
- ],
154
- "engines": {
155
- "node": ">= 10"
156
- }
157
- },
158
- "node_modules/@resvg/resvg-js-linux-x64-gnu": {
159
- "version": "2.6.2",
160
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-x64-gnu/-/resvg-js-linux-x64-gnu-2.6.2.tgz",
161
- "integrity": "sha512-IVUe+ckIerA7xMZ50duAZzwf1U7khQe2E0QpUxu5MBJNao5RqC0zwV/Zm965vw6D3gGFUl7j4m+oJjubBVoftw==",
162
- "cpu": [
163
- "x64"
164
- ],
165
- "license": "MPL-2.0",
166
- "optional": true,
167
- "os": [
168
- "linux"
169
- ],
170
- "engines": {
171
- "node": ">= 10"
172
- }
173
- },
174
- "node_modules/@resvg/resvg-js-linux-x64-musl": {
175
- "version": "2.6.2",
176
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-linux-x64-musl/-/resvg-js-linux-x64-musl-2.6.2.tgz",
177
- "integrity": "sha512-UOf83vqTzoYQO9SZ0fPl2ZIFtNIz/Rr/y+7X8XRX1ZnBYsQ/tTb+cj9TE+KHOdmlTFBxhYzVkP2lRByCzqi4jQ==",
178
- "cpu": [
179
- "x64"
180
- ],
181
- "license": "MPL-2.0",
182
- "optional": true,
183
- "os": [
184
- "linux"
185
- ],
186
- "engines": {
187
- "node": ">= 10"
188
- }
189
- },
190
- "node_modules/@resvg/resvg-js-win32-arm64-msvc": {
191
- "version": "2.6.2",
192
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-win32-arm64-msvc/-/resvg-js-win32-arm64-msvc-2.6.2.tgz",
193
- "integrity": "sha512-7C/RSgCa+7vqZ7qAbItfiaAWhyRSoD4l4BQAbVDqRRsRgY+S+hgS3in0Rxr7IorKUpGE69X48q6/nOAuTJQxeQ==",
194
- "cpu": [
195
- "arm64"
196
- ],
197
- "license": "MPL-2.0",
198
- "optional": true,
199
- "os": [
200
- "win32"
201
- ],
202
- "engines": {
203
- "node": ">= 10"
204
- }
205
- },
206
- "node_modules/@resvg/resvg-js-win32-ia32-msvc": {
207
- "version": "2.6.2",
208
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-win32-ia32-msvc/-/resvg-js-win32-ia32-msvc-2.6.2.tgz",
209
- "integrity": "sha512-har4aPAlvjnLcil40AC77YDIk6loMawuJwFINEM7n0pZviwMkMvjb2W5ZirsNOZY4aDbo5tLx0wNMREp5Brk+w==",
210
- "cpu": [
211
- "ia32"
212
- ],
213
- "license": "MPL-2.0",
214
- "optional": true,
215
- "os": [
216
- "win32"
217
- ],
218
- "engines": {
219
- "node": ">= 10"
220
- }
221
- },
222
- "node_modules/@resvg/resvg-js-win32-x64-msvc": {
223
- "version": "2.6.2",
224
- "resolved": "https://registry.npmjs.org/@resvg/resvg-js-win32-x64-msvc/-/resvg-js-win32-x64-msvc-2.6.2.tgz",
225
- "integrity": "sha512-ZXtYhtUr5SSaBrUDq7DiyjOFJqBVL/dOBN7N/qmi/pO0IgiWW/f/ue3nbvu9joWE5aAKDoIzy/CxsY0suwGosQ==",
226
- "cpu": [
227
- "x64"
228
- ],
229
- "license": "MPL-2.0",
230
- "optional": true,
231
- "os": [
232
- "win32"
233
- ],
234
- "engines": {
235
- "node": ">= 10"
236
- }
237
- },
238
- "node_modules/@shuding/opentype.js": {
239
- "version": "1.4.0-beta.0",
240
- "resolved": "https://registry.npmjs.org/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz",
241
- "integrity": "sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==",
242
- "license": "MIT",
243
- "dependencies": {
244
- "fflate": "^0.7.3",
245
- "string.prototype.codepointat": "^0.2.1"
246
- },
247
- "bin": {
248
- "ot": "bin/ot"
249
- },
250
- "engines": {
251
- "node": ">= 8.0.0"
252
- }
253
- },
254
- "node_modules/@types/prop-types": {
255
- "version": "15.7.15",
256
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
257
- "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
258
- "dev": true,
259
- "license": "MIT"
260
- },
261
- "node_modules/@types/react": {
262
- "version": "18.3.28",
263
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.28.tgz",
264
- "integrity": "sha512-z9VXpC7MWrhfWipitjNdgCauoMLRdIILQsAEV+ZesIzBq/oUlxk0m3ApZuMFCXdnS4U7KrI+l3WRUEGQ8K1QKw==",
265
- "dev": true,
266
- "license": "MIT",
267
- "dependencies": {
268
- "@types/prop-types": "*",
269
- "csstype": "^3.2.2"
270
- }
271
- },
272
- "node_modules/@types/react-dom": {
273
- "version": "18.3.7",
274
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz",
275
- "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==",
276
- "dev": true,
277
- "license": "MIT",
278
- "peerDependencies": {
279
- "@types/react": "^18.0.0"
280
- }
281
- },
282
- "node_modules/base64-js": {
283
- "version": "0.0.8",
284
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz",
285
- "integrity": "sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==",
286
- "license": "MIT",
287
- "engines": {
288
- "node": ">= 0.4"
289
- }
290
- },
291
- "node_modules/camelize": {
292
- "version": "1.0.1",
293
- "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz",
294
- "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==",
295
- "license": "MIT",
296
- "funding": {
297
- "url": "https://github.com/sponsors/ljharb"
298
- }
299
- },
300
- "node_modules/color-name": {
301
- "version": "1.1.4",
302
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
303
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
304
- "license": "MIT"
305
- },
306
- "node_modules/css-background-parser": {
307
- "version": "0.1.0",
308
- "resolved": "https://registry.npmjs.org/css-background-parser/-/css-background-parser-0.1.0.tgz",
309
- "integrity": "sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA==",
310
- "license": "MIT"
311
- },
312
- "node_modules/css-box-shadow": {
313
- "version": "1.0.0-3",
314
- "resolved": "https://registry.npmjs.org/css-box-shadow/-/css-box-shadow-1.0.0-3.tgz",
315
- "integrity": "sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg==",
316
- "license": "MIT"
317
- },
318
- "node_modules/css-color-keywords": {
319
- "version": "1.0.0",
320
- "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz",
321
- "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==",
322
- "license": "ISC",
323
- "engines": {
324
- "node": ">=4"
325
- }
326
- },
327
- "node_modules/css-gradient-parser": {
328
- "version": "0.0.16",
329
- "resolved": "https://registry.npmjs.org/css-gradient-parser/-/css-gradient-parser-0.0.16.tgz",
330
- "integrity": "sha512-3O5QdqgFRUbXvK1x5INf1YkBz1UKSWqrd63vWsum8MNHDBYD5urm3QtxZbKU259OrEXNM26lP/MPY3d1IGkBgA==",
331
- "license": "MIT",
332
- "engines": {
333
- "node": ">=16"
334
- }
335
- },
336
- "node_modules/css-to-react-native": {
337
- "version": "3.2.0",
338
- "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz",
339
- "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==",
340
- "license": "MIT",
341
- "dependencies": {
342
- "camelize": "^1.0.0",
343
- "css-color-keywords": "^1.0.0",
344
- "postcss-value-parser": "^4.0.2"
345
- }
346
- },
347
- "node_modules/csstype": {
348
- "version": "3.2.3",
349
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
350
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
351
- "dev": true,
352
- "license": "MIT"
353
- },
354
- "node_modules/emoji-regex": {
355
- "version": "10.6.0",
356
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
357
- "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
358
- "license": "MIT"
359
- },
360
- "node_modules/escape-html": {
361
- "version": "1.0.3",
362
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
363
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
364
- "license": "MIT"
365
- },
366
- "node_modules/fflate": {
367
- "version": "0.7.4",
368
- "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz",
369
- "integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==",
370
- "license": "MIT"
371
- },
372
- "node_modules/gifenc": {
373
- "version": "1.0.3",
374
- "resolved": "https://registry.npmjs.org/gifenc/-/gifenc-1.0.3.tgz",
375
- "integrity": "sha512-xdr6AdrfGBcfzncONUOlXMBuc5wJDtOueE3c5rdG0oNgtINLD+f2iFZltrBRZYzACRbKr+mSVU/x98zv2u3jmw==",
376
- "license": "MIT"
377
- },
378
- "node_modules/hex-rgb": {
379
- "version": "4.3.0",
380
- "resolved": "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz",
381
- "integrity": "sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==",
382
- "license": "MIT",
383
- "engines": {
384
- "node": ">=6"
385
- },
386
- "funding": {
387
- "url": "https://github.com/sponsors/sindresorhus"
388
- }
389
- },
390
- "node_modules/jiti": {
391
- "version": "2.6.1",
392
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
393
- "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
394
- "license": "MIT",
395
- "bin": {
396
- "jiti": "lib/jiti-cli.mjs"
397
- }
398
- },
399
- "node_modules/js-tokens": {
400
- "version": "4.0.0",
401
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
402
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
403
- "license": "MIT"
404
- },
405
- "node_modules/linebreak": {
406
- "version": "1.1.0",
407
- "resolved": "https://registry.npmjs.org/linebreak/-/linebreak-1.1.0.tgz",
408
- "integrity": "sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==",
409
- "license": "MIT",
410
- "dependencies": {
411
- "base64-js": "0.0.8",
412
- "unicode-trie": "^2.0.0"
413
- }
414
- },
415
- "node_modules/loose-envify": {
416
- "version": "1.4.0",
417
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
418
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
419
- "license": "MIT",
420
- "dependencies": {
421
- "js-tokens": "^3.0.0 || ^4.0.0"
422
- },
423
- "bin": {
424
- "loose-envify": "cli.js"
425
- }
426
- },
427
- "node_modules/pako": {
428
- "version": "0.2.9",
429
- "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
430
- "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==",
431
- "license": "MIT"
432
- },
433
- "node_modules/parse-css-color": {
434
- "version": "0.2.1",
435
- "resolved": "https://registry.npmjs.org/parse-css-color/-/parse-css-color-0.2.1.tgz",
436
- "integrity": "sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==",
437
- "license": "MIT",
438
- "dependencies": {
439
- "color-name": "^1.1.4",
440
- "hex-rgb": "^4.1.0"
441
- }
442
- },
443
- "node_modules/postcss-value-parser": {
444
- "version": "4.2.0",
445
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
446
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
447
- "license": "MIT"
448
- },
449
- "node_modules/react": {
450
- "version": "18.3.1",
451
- "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
452
- "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
453
- "license": "MIT",
454
- "dependencies": {
455
- "loose-envify": "^1.1.0"
456
- },
457
- "engines": {
458
- "node": ">=0.10.0"
459
- }
460
- },
461
- "node_modules/react-dom": {
462
- "version": "18.3.1",
463
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
464
- "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
465
- "license": "MIT",
466
- "dependencies": {
467
- "loose-envify": "^1.1.0",
468
- "scheduler": "^0.23.2"
469
- },
470
- "peerDependencies": {
471
- "react": "^18.3.1"
472
- }
473
- },
474
- "node_modules/satori": {
475
- "version": "0.11.3",
476
- "resolved": "https://registry.npmjs.org/satori/-/satori-0.11.3.tgz",
477
- "integrity": "sha512-Wg7sls0iYAEETzi9YYcY16QVIqXjZT06XjkwondC5CGhw1mhmgKBCub8cCmkxdl/naXXQD+m29CFgn8pwtYCnA==",
478
- "license": "MPL-2.0",
479
- "dependencies": {
480
- "@shuding/opentype.js": "1.4.0-beta.0",
481
- "css-background-parser": "^0.1.0",
482
- "css-box-shadow": "1.0.0-3",
483
- "css-gradient-parser": "^0.0.16",
484
- "css-to-react-native": "^3.0.0",
485
- "emoji-regex": "^10.2.1",
486
- "escape-html": "^1.0.3",
487
- "linebreak": "^1.1.0",
488
- "parse-css-color": "^0.2.1",
489
- "postcss-value-parser": "^4.2.0",
490
- "yoga-wasm-web": "^0.3.3"
491
- },
492
- "engines": {
493
- "node": ">=16"
494
- }
495
- },
496
- "node_modules/scheduler": {
497
- "version": "0.23.2",
498
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
499
- "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
500
- "license": "MIT",
501
- "dependencies": {
502
- "loose-envify": "^1.1.0"
503
- }
504
- },
505
- "node_modules/string.prototype.codepointat": {
506
- "version": "0.2.1",
507
- "resolved": "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz",
508
- "integrity": "sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==",
509
- "license": "MIT"
510
- },
511
- "node_modules/tiny-inflate": {
512
- "version": "1.0.3",
513
- "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
514
- "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
515
- "license": "MIT"
516
- },
517
- "node_modules/unicode-trie": {
518
- "version": "2.0.0",
519
- "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz",
520
- "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==",
521
- "license": "MIT",
522
- "dependencies": {
523
- "pako": "^0.2.5",
524
- "tiny-inflate": "^1.0.0"
525
- }
526
- },
527
- "node_modules/yoga-wasm-web": {
528
- "version": "0.3.3",
529
- "resolved": "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz",
530
- "integrity": "sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==",
531
- "license": "MIT"
532
- }
533
- }
534
- }
package/settings.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "lastChangelogVersion": "0.57.1-cwilson613.1",
3
- "theme": "alpharius"
4
- }