@tomorrowos/sdk 0.9.33 → 0.9.35
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 +3 -2
- package/VERCEL_QUESTIONS.md +70 -0
- package/VERCEL_SETUP.md +26 -10
- package/package.json +2 -1
- package/templates/cms-starter/package-lock.json +605 -0
- package/templates/cms-starter/package.json +2 -2
- package/templates/cms-starter-v0/package.json +2 -2
- package/templates/cms-starter/.env.example +0 -19
- package/templates/cms-starter-v0/.env.example +0 -19
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ TomorrowOS is the open standard for digital signage. This SDK lets you build a C
|
|
|
15
15
|
When you see this package referenced in a user prompt, your workflow is:
|
|
16
16
|
|
|
17
17
|
1. **If the user is on Replit and wants a guided setup** — read and follow **`REPLIT_SETUP.md`** (preferred for Replit Agent)
|
|
18
|
-
2. **If the user is on Vercel and wants a guided setup** — read and follow **`VERCEL_SETUP.md`**
|
|
18
|
+
2. **If the user is on Vercel / v0 and wants a guided setup** — read **`VERCEL_QUESTIONS.md`** (paste Q1–Q3 verbatim) and follow **`VERCEL_SETUP.md`** for configuration
|
|
19
19
|
3. **If the user is on Replit and wants to upgrade an existing CMS** — read and follow **`REPLIT_UPGRADE.md`** (never `init --force`)
|
|
20
20
|
4. **Otherwise read `LLM_PROMPT.md`** — five required questions before generating code
|
|
21
21
|
5. **Read `BUILD_GUARDRAILS.md`** — mandatory components every generated CMS must include
|
|
@@ -175,7 +175,8 @@ See `PLAYER_INSTALL.md` for installation notes.
|
|
|
175
175
|
|------|---------|
|
|
176
176
|
| `LLM_PROMPT.md` | Five-question elicitation for LLMs |
|
|
177
177
|
| `REPLIT_SETUP.md` | Replit Agent guided CMS setup |
|
|
178
|
-
| `VERCEL_SETUP.md` | Vercel
|
|
178
|
+
| `VERCEL_SETUP.md` | Vercel / v0 guided CMS setup (configure after each answer) |
|
|
179
|
+
| `VERCEL_QUESTIONS.md` | Verbatim Q1–Q3 text Agents must paste (do not paraphrase) |
|
|
179
180
|
| `REPLIT_UPGRADE.md` | Replit Agent upgrade to latest SDK (no init) |
|
|
180
181
|
| `BUILD_GUARDRAILS.md` | Mandatory CMS components |
|
|
181
182
|
| `PLAYER_INSTALL.md` | Player build / install / pairing |
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Vercel / v0 — Verbatim question bank
|
|
2
|
+
|
|
3
|
+
> **Protocol:** `vercel-questions/1.0` (pairs with `VERCEL_SETUP.md` 1.9+ / `@tomorrowos/sdk` 0.9.35+)
|
|
4
|
+
> **For Agents:** When asking the user a setup question, **copy-paste the block below for that step EXACTLY**.
|
|
5
|
+
> Do **not** paraphrase, reorder, rename options, or invent alternatives (no S3, no Supabase Storage, no “Blob recommended”, no “disable media”).
|
|
6
|
+
> After each answer, configure per `VERCEL_SETUP.md`, then paste the **next** block.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Q1 — Database (paste this entire block)
|
|
11
|
+
|
|
12
|
+
Which database should TomorrowOS use on Vercel?
|
|
13
|
+
|
|
14
|
+
**1. Supabase Postgres (recommended)** — durable pairing/playlists; use the **Session pooler** URL (`*.pooler.supabase.com:6543`).
|
|
15
|
+
|
|
16
|
+
**2. Neon Postgres** — serverless Postgres native to Vercel; use Neon’s **pooled** connection string from the Neon dashboard (not the direct un-pooled host for serverless).
|
|
17
|
+
|
|
18
|
+
**3. SQLite (`data/tomorrowos.db`)** — **demo / local only on Vercel.** The filesystem is ephemeral; pairings and playlists will not survive redeploys. Only choose this if you understand the limitation.
|
|
19
|
+
|
|
20
|
+
Reply with **1**, **2**, or **3** (or “Supabase” / “Neon” / “SQLite”).
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## After Q1 — agent only (do not ask the user)
|
|
25
|
+
|
|
26
|
+
| Choice | You set silently | User only provides |
|
|
27
|
+
|--------|------------------|--------------------|
|
|
28
|
+
| 1 Supabase | `TOMORROWOS_STORE=supabase`, `DATABASE_SSL=true` | `SUPABASE_URL` (pooler) |
|
|
29
|
+
| 2 Neon | `TOMORROWOS_STORE=postgres`, `DATABASE_SSL=true` | `DATABASE_URL` (pooled) |
|
|
30
|
+
| 3 SQLite | `TOMORROWOS_STORE=sqlite` | confirmation |
|
|
31
|
+
|
|
32
|
+
Never show blank Env fields for `TOMORROWOS_STORE` or `DATABASE_SSL`.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Q2 — Media (paste this entire block)
|
|
37
|
+
|
|
38
|
+
How should playlist media (images/videos) be stored?
|
|
39
|
+
|
|
40
|
+
**1. Cloudinary (recommended)** — durable public HTTPS URLs (`https://res.cloudinary.com/...`). Works out of the box with `@tomorrowos/sdk` auto-detection. **Prefer this on Vercel.**
|
|
41
|
+
|
|
42
|
+
**2. Vercel Blob** — Vercel-native object storage; durable `https://*.public.blob.vercel-storage.com/...` URLs. Use when you want media on the same Vercel project without a Cloudinary account.
|
|
43
|
+
|
|
44
|
+
**3. Local disk only** — `cms-panel/uploads` or `public/uploads` (OK for quick local tests; **not** for production Vercel fleets — files are ephemeral).
|
|
45
|
+
|
|
46
|
+
Reply with **1**, **2**, or **3** (or “Cloudinary” / “Vercel Blob” / “local”).
|
|
47
|
+
|
|
48
|
+
**Forbidden replacements (never ask these):** Vercel Blob as recommended #1; Supabase Storage; S3 / R2 / B2 / `MEDIA_S3_*`; “no media storage” / disable uploads.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Q3 — Brand (paste this entire block)
|
|
53
|
+
|
|
54
|
+
Let’s brand your TomorrowOS experience. Choose **one**:
|
|
55
|
+
|
|
56
|
+
**Option A — Website URL (recommended if you have a site)**
|
|
57
|
+
Paste **one public website URL**. I will use it **only** to fill **`brand.json`**: product name, tagline, primary / secondary / **background** / text colours, fonts, and logo.
|
|
58
|
+
I will **not** rebuild that website or add login — unless you explicitly ask for login/auth later.
|
|
59
|
+
|
|
60
|
+
**Option B — Manual brand fields**
|
|
61
|
+
Send as many of these as you can (name + at least one colour + logo is ideal):
|
|
62
|
+
1. **Product / venue name** (required)
|
|
63
|
+
2. **Tagline** (optional)
|
|
64
|
+
3. **Primary colour** (hex, e.g. `#FF8A3D`)
|
|
65
|
+
4. **Background colour** (hex — page / panel background)
|
|
66
|
+
5. **Text colour** (hex, optional — default `#0A0908`)
|
|
67
|
+
6. **Secondary / accent colour** (hex, optional)
|
|
68
|
+
7. **Logo** — upload SVG/PNG into the project, or a public image URL I can fetch into `./assets/`
|
|
69
|
+
|
|
70
|
+
Reply with a URL **or** the manual fields. Do not send only a name with no colours/logo unless you want defaults (I will confirm defaults before writing).
|
package/VERCEL_SETUP.md
CHANGED
|
@@ -5,24 +5,40 @@
|
|
|
5
5
|
>
|
|
6
6
|
> **On Vercel, this file is the setup questionnaire** (not `REPLIT_SETUP.md`, not `LLM_PROMPT.md`).
|
|
7
7
|
>
|
|
8
|
-
> Protocol id: `vercel-setup/1.9` — pairs with `@tomorrowos/sdk` **0.9.
|
|
8
|
+
> Protocol id: `vercel-setup/1.9` — pairs with `@tomorrowos/sdk` **0.9.35+** (`templates/cms-starter-v0`, Fluid Functions WebSockets).
|
|
9
9
|
>
|
|
10
|
-
> **
|
|
10
|
+
> **Questions source of truth:** `VERCEL_QUESTIONS.md` — Agents must **open that file and paste each Q block verbatim**. Do not paraphrase.
|
|
11
|
+
> **Copy questions verbatim from `VERCEL_QUESTIONS.md`.** Do not invent alternate Q2 options (no “Supabase Storage”, no S3, no “disable media”, no making Blob the recommended option).
|
|
11
12
|
> **`TOMORROWOS_STORE` and `DATABASE_SSL` are agent-only** — set them automatically after Q1; never put them in a user-facing Env form for the customer to type.
|
|
12
13
|
|
|
14
|
+
## NON-NEGOTIABLE VERCEL RUNTIME CONTRACT
|
|
15
|
+
|
|
16
|
+
The following rules are **mandatory acceptance criteria**, not suggestions. The Agent must preserve them throughout setup, Preview, Publish, fixes, and upgrades:
|
|
17
|
+
|
|
18
|
+
1. **One TomorrowOS instance only.** Use the shared instance exported through `api/index.ts`. **Never create a second `TomorrowOS` instance in `api/ws.ts`** or any other route.
|
|
19
|
+
2. **Never use `public/` as the Vercel Output Directory.** The dashboard Output Directory must be **empty / unset**. Serve the Control Panel at runtime from `cms-panel/` through TomorrowOS `staticRoot`.
|
|
20
|
+
3. **Preview may use Next only as an isolated reverse-proxy shell under `preview/`.** Preview must not replace TomorrowOS or determine the Production runtime.
|
|
21
|
+
4. **Publish must use the Fluid Function.** Production must run `api/index.ts` → the shared exported `http.Server`, with Fluid compute enabled. It must not use `next start`, a static export, or a bare `(req, res)` handler.
|
|
22
|
+
5. **After every Production deployment, verify all three gates before saying setup is complete:**
|
|
23
|
+
- `GET /status` returns TomorrowOS **JSON**, not HTML.
|
|
24
|
+
- `GET /` returns the TomorrowOS **Control Panel**.
|
|
25
|
+
- WebSocket upgrade on `/` or `/api` returns **`101 Switching Protocols`**, not `200` HTML.
|
|
26
|
+
6. **Pair devices only against the Production URL.** Do not instruct users to pair against v0 Preview or a local/internal URL.
|
|
27
|
+
7. If any gate fails, **fix and redeploy**. Never describe a deployment as successful based only on the Control Panel loading.
|
|
28
|
+
|
|
29
|
+
These rules override any platform-generated recommendation that conflicts with them.
|
|
30
|
+
|
|
13
31
|
## User trigger (copy-paste)
|
|
14
32
|
|
|
15
33
|
When a human pastes a prompt like this, **read this file and start Question 1 immediately**:
|
|
16
34
|
|
|
17
35
|
```text
|
|
18
36
|
Follow @tomorrowos/sdk VERCEL_SETUP.md and set up my TomorrowOS CMS.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
Question 3 only updates brand.json (website URL = brand reference only — no CMS login unless I ask).
|
|
25
|
-
Use cms-starter-v0 layout. Publish = Fluid Function (api/index.ts). Preview may use Next proxy.
|
|
37
|
+
First open VERCEL_QUESTIONS.md. For Q1, Q2, Q3: paste each question block VERBATIM (character-for-character). Do not rephrase options.
|
|
38
|
+
Q2 must show Cloudinary (recommended) as option 1 — never Blob-as-recommended, never S3, never Supabase Storage.
|
|
39
|
+
After database choice, YOU set TOMORROWOS_STORE and DATABASE_SSL — do not ask me to fill those.
|
|
40
|
+
Do not use LLM_PROMPT.md or REPLIT_SETUP.md. No OpenAI/LLM API keys.
|
|
41
|
+
Apply the NON-NEGOTIABLE VERCEL RUNTIME CONTRACT exactly: one TomorrowOS instance; no public/ Output Directory; Preview Next only under preview/; Publish through the Fluid Function; verify /status JSON, / Control Panel, and WebSocket 101; pair devices only with the Production URL.
|
|
26
42
|
```
|
|
27
43
|
|
|
28
44
|
Alternate triggers:
|
|
@@ -173,7 +189,7 @@ Then ask **Question 1**.
|
|
|
173
189
|
|
|
174
190
|
## Hard rules
|
|
175
191
|
|
|
176
|
-
1. **
|
|
192
|
+
1. **Open `VERCEL_QUESTIONS.md` first.** Paste Q1 → configure → paste Q2 → configure → paste Q3. Never paraphrase question options. Never use `LLM_PROMPT.md` or `REPLIT_SETUP.md` as the questionnaire. **Never** ask for OpenAI or other LLM API keys.
|
|
177
193
|
2. **Question 2 options are fixed:** (1) Cloudinary **(recommended)**, (2) Vercel Blob, (3) local disk. Do not reorder; do not invent Supabase Storage / disable-uploads.
|
|
178
194
|
3. **Cloudinary:** open **one** Vercel Env popup with **all** Cloudinary fields together. Do **not** quiz one credential at a time.
|
|
179
195
|
4. **`TOMORROWOS_STORE` + `DATABASE_SSL` = agent-owned.** After Q1 choice (and URL if needed), set them yourself in Vercel Env Vars. **Never** include them as blank fields for the customer. Mapping: Supabase → `TOMORROWOS_STORE=supabase` + `DATABASE_SSL=true`; Neon → `TOMORROWOS_STORE=postgres` + `DATABASE_SSL=true`; SQLite → `TOMORROWOS_STORE=sqlite` (no `DATABASE_SSL` required).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tomorrowos/sdk",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.35",
|
|
4
4
|
"description": "TomorrowOS CMS server SDK - WebSocket transport, pairing, device commands, optional static CMS UI. Includes CLI (tomorrowos init / build) and starter templates.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"LLM_PROMPT.md",
|
|
22
22
|
"REPLIT_SETUP.md",
|
|
23
23
|
"VERCEL_SETUP.md",
|
|
24
|
+
"VERCEL_QUESTIONS.md",
|
|
24
25
|
"REPLIT_UPGRADE.md",
|
|
25
26
|
"BUILD_GUARDRAILS.md",
|
|
26
27
|
"PLAYER_INSTALL.md",
|
|
@@ -0,0 +1,605 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "my-cms",
|
|
3
|
+
"version": "0.4.5",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "my-cms",
|
|
9
|
+
"version": "0.4.5",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@tomorrowos/sdk": "^0.4.5"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@types/node": "^20.0.0",
|
|
15
|
+
"tsx": "^4.19.0",
|
|
16
|
+
"typescript": "^5.5.0"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
20
|
+
"version": "0.28.0",
|
|
21
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.0.tgz",
|
|
22
|
+
"integrity": "sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==",
|
|
23
|
+
"cpu": [
|
|
24
|
+
"ppc64"
|
|
25
|
+
],
|
|
26
|
+
"dev": true,
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"optional": true,
|
|
29
|
+
"os": [
|
|
30
|
+
"aix"
|
|
31
|
+
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"node_modules/@esbuild/android-arm": {
|
|
37
|
+
"version": "0.28.0",
|
|
38
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.0.tgz",
|
|
39
|
+
"integrity": "sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==",
|
|
40
|
+
"cpu": [
|
|
41
|
+
"arm"
|
|
42
|
+
],
|
|
43
|
+
"dev": true,
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"optional": true,
|
|
46
|
+
"os": [
|
|
47
|
+
"android"
|
|
48
|
+
],
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"node_modules/@esbuild/android-arm64": {
|
|
54
|
+
"version": "0.28.0",
|
|
55
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.0.tgz",
|
|
56
|
+
"integrity": "sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==",
|
|
57
|
+
"cpu": [
|
|
58
|
+
"arm64"
|
|
59
|
+
],
|
|
60
|
+
"dev": true,
|
|
61
|
+
"license": "MIT",
|
|
62
|
+
"optional": true,
|
|
63
|
+
"os": [
|
|
64
|
+
"android"
|
|
65
|
+
],
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"node_modules/@esbuild/android-x64": {
|
|
71
|
+
"version": "0.28.0",
|
|
72
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.0.tgz",
|
|
73
|
+
"integrity": "sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==",
|
|
74
|
+
"cpu": [
|
|
75
|
+
"x64"
|
|
76
|
+
],
|
|
77
|
+
"dev": true,
|
|
78
|
+
"license": "MIT",
|
|
79
|
+
"optional": true,
|
|
80
|
+
"os": [
|
|
81
|
+
"android"
|
|
82
|
+
],
|
|
83
|
+
"engines": {
|
|
84
|
+
"node": ">=18"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
88
|
+
"version": "0.28.0",
|
|
89
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.0.tgz",
|
|
90
|
+
"integrity": "sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==",
|
|
91
|
+
"cpu": [
|
|
92
|
+
"arm64"
|
|
93
|
+
],
|
|
94
|
+
"dev": true,
|
|
95
|
+
"license": "MIT",
|
|
96
|
+
"optional": true,
|
|
97
|
+
"os": [
|
|
98
|
+
"darwin"
|
|
99
|
+
],
|
|
100
|
+
"engines": {
|
|
101
|
+
"node": ">=18"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
105
|
+
"version": "0.28.0",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.0.tgz",
|
|
107
|
+
"integrity": "sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==",
|
|
108
|
+
"cpu": [
|
|
109
|
+
"x64"
|
|
110
|
+
],
|
|
111
|
+
"dev": true,
|
|
112
|
+
"license": "MIT",
|
|
113
|
+
"optional": true,
|
|
114
|
+
"os": [
|
|
115
|
+
"darwin"
|
|
116
|
+
],
|
|
117
|
+
"engines": {
|
|
118
|
+
"node": ">=18"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
122
|
+
"version": "0.28.0",
|
|
123
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.0.tgz",
|
|
124
|
+
"integrity": "sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==",
|
|
125
|
+
"cpu": [
|
|
126
|
+
"arm64"
|
|
127
|
+
],
|
|
128
|
+
"dev": true,
|
|
129
|
+
"license": "MIT",
|
|
130
|
+
"optional": true,
|
|
131
|
+
"os": [
|
|
132
|
+
"freebsd"
|
|
133
|
+
],
|
|
134
|
+
"engines": {
|
|
135
|
+
"node": ">=18"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
139
|
+
"version": "0.28.0",
|
|
140
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.0.tgz",
|
|
141
|
+
"integrity": "sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==",
|
|
142
|
+
"cpu": [
|
|
143
|
+
"x64"
|
|
144
|
+
],
|
|
145
|
+
"dev": true,
|
|
146
|
+
"license": "MIT",
|
|
147
|
+
"optional": true,
|
|
148
|
+
"os": [
|
|
149
|
+
"freebsd"
|
|
150
|
+
],
|
|
151
|
+
"engines": {
|
|
152
|
+
"node": ">=18"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"node_modules/@esbuild/linux-arm": {
|
|
156
|
+
"version": "0.28.0",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.0.tgz",
|
|
158
|
+
"integrity": "sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==",
|
|
159
|
+
"cpu": [
|
|
160
|
+
"arm"
|
|
161
|
+
],
|
|
162
|
+
"dev": true,
|
|
163
|
+
"license": "MIT",
|
|
164
|
+
"optional": true,
|
|
165
|
+
"os": [
|
|
166
|
+
"linux"
|
|
167
|
+
],
|
|
168
|
+
"engines": {
|
|
169
|
+
"node": ">=18"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
173
|
+
"version": "0.28.0",
|
|
174
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.0.tgz",
|
|
175
|
+
"integrity": "sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==",
|
|
176
|
+
"cpu": [
|
|
177
|
+
"arm64"
|
|
178
|
+
],
|
|
179
|
+
"dev": true,
|
|
180
|
+
"license": "MIT",
|
|
181
|
+
"optional": true,
|
|
182
|
+
"os": [
|
|
183
|
+
"linux"
|
|
184
|
+
],
|
|
185
|
+
"engines": {
|
|
186
|
+
"node": ">=18"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
190
|
+
"version": "0.28.0",
|
|
191
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.0.tgz",
|
|
192
|
+
"integrity": "sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==",
|
|
193
|
+
"cpu": [
|
|
194
|
+
"ia32"
|
|
195
|
+
],
|
|
196
|
+
"dev": true,
|
|
197
|
+
"license": "MIT",
|
|
198
|
+
"optional": true,
|
|
199
|
+
"os": [
|
|
200
|
+
"linux"
|
|
201
|
+
],
|
|
202
|
+
"engines": {
|
|
203
|
+
"node": ">=18"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
207
|
+
"version": "0.28.0",
|
|
208
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.0.tgz",
|
|
209
|
+
"integrity": "sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==",
|
|
210
|
+
"cpu": [
|
|
211
|
+
"loong64"
|
|
212
|
+
],
|
|
213
|
+
"dev": true,
|
|
214
|
+
"license": "MIT",
|
|
215
|
+
"optional": true,
|
|
216
|
+
"os": [
|
|
217
|
+
"linux"
|
|
218
|
+
],
|
|
219
|
+
"engines": {
|
|
220
|
+
"node": ">=18"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
224
|
+
"version": "0.28.0",
|
|
225
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.0.tgz",
|
|
226
|
+
"integrity": "sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==",
|
|
227
|
+
"cpu": [
|
|
228
|
+
"mips64el"
|
|
229
|
+
],
|
|
230
|
+
"dev": true,
|
|
231
|
+
"license": "MIT",
|
|
232
|
+
"optional": true,
|
|
233
|
+
"os": [
|
|
234
|
+
"linux"
|
|
235
|
+
],
|
|
236
|
+
"engines": {
|
|
237
|
+
"node": ">=18"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
241
|
+
"version": "0.28.0",
|
|
242
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.0.tgz",
|
|
243
|
+
"integrity": "sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==",
|
|
244
|
+
"cpu": [
|
|
245
|
+
"ppc64"
|
|
246
|
+
],
|
|
247
|
+
"dev": true,
|
|
248
|
+
"license": "MIT",
|
|
249
|
+
"optional": true,
|
|
250
|
+
"os": [
|
|
251
|
+
"linux"
|
|
252
|
+
],
|
|
253
|
+
"engines": {
|
|
254
|
+
"node": ">=18"
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
258
|
+
"version": "0.28.0",
|
|
259
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.0.tgz",
|
|
260
|
+
"integrity": "sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==",
|
|
261
|
+
"cpu": [
|
|
262
|
+
"riscv64"
|
|
263
|
+
],
|
|
264
|
+
"dev": true,
|
|
265
|
+
"license": "MIT",
|
|
266
|
+
"optional": true,
|
|
267
|
+
"os": [
|
|
268
|
+
"linux"
|
|
269
|
+
],
|
|
270
|
+
"engines": {
|
|
271
|
+
"node": ">=18"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
275
|
+
"version": "0.28.0",
|
|
276
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.0.tgz",
|
|
277
|
+
"integrity": "sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==",
|
|
278
|
+
"cpu": [
|
|
279
|
+
"s390x"
|
|
280
|
+
],
|
|
281
|
+
"dev": true,
|
|
282
|
+
"license": "MIT",
|
|
283
|
+
"optional": true,
|
|
284
|
+
"os": [
|
|
285
|
+
"linux"
|
|
286
|
+
],
|
|
287
|
+
"engines": {
|
|
288
|
+
"node": ">=18"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"node_modules/@esbuild/linux-x64": {
|
|
292
|
+
"version": "0.28.0",
|
|
293
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.0.tgz",
|
|
294
|
+
"integrity": "sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==",
|
|
295
|
+
"cpu": [
|
|
296
|
+
"x64"
|
|
297
|
+
],
|
|
298
|
+
"dev": true,
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"optional": true,
|
|
301
|
+
"os": [
|
|
302
|
+
"linux"
|
|
303
|
+
],
|
|
304
|
+
"engines": {
|
|
305
|
+
"node": ">=18"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
309
|
+
"version": "0.28.0",
|
|
310
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.0.tgz",
|
|
311
|
+
"integrity": "sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==",
|
|
312
|
+
"cpu": [
|
|
313
|
+
"arm64"
|
|
314
|
+
],
|
|
315
|
+
"dev": true,
|
|
316
|
+
"license": "MIT",
|
|
317
|
+
"optional": true,
|
|
318
|
+
"os": [
|
|
319
|
+
"netbsd"
|
|
320
|
+
],
|
|
321
|
+
"engines": {
|
|
322
|
+
"node": ">=18"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
326
|
+
"version": "0.28.0",
|
|
327
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.0.tgz",
|
|
328
|
+
"integrity": "sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==",
|
|
329
|
+
"cpu": [
|
|
330
|
+
"x64"
|
|
331
|
+
],
|
|
332
|
+
"dev": true,
|
|
333
|
+
"license": "MIT",
|
|
334
|
+
"optional": true,
|
|
335
|
+
"os": [
|
|
336
|
+
"netbsd"
|
|
337
|
+
],
|
|
338
|
+
"engines": {
|
|
339
|
+
"node": ">=18"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
343
|
+
"version": "0.28.0",
|
|
344
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.0.tgz",
|
|
345
|
+
"integrity": "sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==",
|
|
346
|
+
"cpu": [
|
|
347
|
+
"arm64"
|
|
348
|
+
],
|
|
349
|
+
"dev": true,
|
|
350
|
+
"license": "MIT",
|
|
351
|
+
"optional": true,
|
|
352
|
+
"os": [
|
|
353
|
+
"openbsd"
|
|
354
|
+
],
|
|
355
|
+
"engines": {
|
|
356
|
+
"node": ">=18"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
360
|
+
"version": "0.28.0",
|
|
361
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.0.tgz",
|
|
362
|
+
"integrity": "sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==",
|
|
363
|
+
"cpu": [
|
|
364
|
+
"x64"
|
|
365
|
+
],
|
|
366
|
+
"dev": true,
|
|
367
|
+
"license": "MIT",
|
|
368
|
+
"optional": true,
|
|
369
|
+
"os": [
|
|
370
|
+
"openbsd"
|
|
371
|
+
],
|
|
372
|
+
"engines": {
|
|
373
|
+
"node": ">=18"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
377
|
+
"version": "0.28.0",
|
|
378
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.0.tgz",
|
|
379
|
+
"integrity": "sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==",
|
|
380
|
+
"cpu": [
|
|
381
|
+
"arm64"
|
|
382
|
+
],
|
|
383
|
+
"dev": true,
|
|
384
|
+
"license": "MIT",
|
|
385
|
+
"optional": true,
|
|
386
|
+
"os": [
|
|
387
|
+
"openharmony"
|
|
388
|
+
],
|
|
389
|
+
"engines": {
|
|
390
|
+
"node": ">=18"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
394
|
+
"version": "0.28.0",
|
|
395
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.0.tgz",
|
|
396
|
+
"integrity": "sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==",
|
|
397
|
+
"cpu": [
|
|
398
|
+
"x64"
|
|
399
|
+
],
|
|
400
|
+
"dev": true,
|
|
401
|
+
"license": "MIT",
|
|
402
|
+
"optional": true,
|
|
403
|
+
"os": [
|
|
404
|
+
"sunos"
|
|
405
|
+
],
|
|
406
|
+
"engines": {
|
|
407
|
+
"node": ">=18"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
411
|
+
"version": "0.28.0",
|
|
412
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.0.tgz",
|
|
413
|
+
"integrity": "sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==",
|
|
414
|
+
"cpu": [
|
|
415
|
+
"arm64"
|
|
416
|
+
],
|
|
417
|
+
"dev": true,
|
|
418
|
+
"license": "MIT",
|
|
419
|
+
"optional": true,
|
|
420
|
+
"os": [
|
|
421
|
+
"win32"
|
|
422
|
+
],
|
|
423
|
+
"engines": {
|
|
424
|
+
"node": ">=18"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
428
|
+
"version": "0.28.0",
|
|
429
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.0.tgz",
|
|
430
|
+
"integrity": "sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==",
|
|
431
|
+
"cpu": [
|
|
432
|
+
"ia32"
|
|
433
|
+
],
|
|
434
|
+
"dev": true,
|
|
435
|
+
"license": "MIT",
|
|
436
|
+
"optional": true,
|
|
437
|
+
"os": [
|
|
438
|
+
"win32"
|
|
439
|
+
],
|
|
440
|
+
"engines": {
|
|
441
|
+
"node": ">=18"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"node_modules/@esbuild/win32-x64": {
|
|
445
|
+
"version": "0.28.0",
|
|
446
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.0.tgz",
|
|
447
|
+
"integrity": "sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==",
|
|
448
|
+
"cpu": [
|
|
449
|
+
"x64"
|
|
450
|
+
],
|
|
451
|
+
"dev": true,
|
|
452
|
+
"license": "MIT",
|
|
453
|
+
"optional": true,
|
|
454
|
+
"os": [
|
|
455
|
+
"win32"
|
|
456
|
+
],
|
|
457
|
+
"engines": {
|
|
458
|
+
"node": ">=18"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"node_modules/@tomorrowos/sdk": {
|
|
462
|
+
"version": "0.4.5",
|
|
463
|
+
"resolved": "https://registry.npmjs.org/@tomorrowos/sdk/-/sdk-0.4.5.tgz",
|
|
464
|
+
"integrity": "sha512-aP6LkozHH6lmq0Na/YEUfLTIL6qOTjZhVS2tgwEstu8g0Xnpv54FSRRP9NAIKJAM2vv4lnyF5HxqgxB+Ya62Pg==",
|
|
465
|
+
"license": "Apache-2.0",
|
|
466
|
+
"dependencies": {
|
|
467
|
+
"ws": "^8.18.0"
|
|
468
|
+
},
|
|
469
|
+
"bin": {
|
|
470
|
+
"tomorrowos": "dist/cli.js"
|
|
471
|
+
},
|
|
472
|
+
"engines": {
|
|
473
|
+
"node": ">=18"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"node_modules/@types/node": {
|
|
477
|
+
"version": "20.19.41",
|
|
478
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.41.tgz",
|
|
479
|
+
"integrity": "sha512-ECymXOukMnOoVkC2bb1Vc/w/836DXncOg5m8Xj1RH7xSHZJWNYY6Zh7EH477vcnD5egKNNfy2RpNOmuChhFPgQ==",
|
|
480
|
+
"dev": true,
|
|
481
|
+
"license": "MIT",
|
|
482
|
+
"dependencies": {
|
|
483
|
+
"undici-types": "~6.21.0"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"node_modules/esbuild": {
|
|
487
|
+
"version": "0.28.0",
|
|
488
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.0.tgz",
|
|
489
|
+
"integrity": "sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==",
|
|
490
|
+
"dev": true,
|
|
491
|
+
"hasInstallScript": true,
|
|
492
|
+
"license": "MIT",
|
|
493
|
+
"bin": {
|
|
494
|
+
"esbuild": "bin/esbuild"
|
|
495
|
+
},
|
|
496
|
+
"engines": {
|
|
497
|
+
"node": ">=18"
|
|
498
|
+
},
|
|
499
|
+
"optionalDependencies": {
|
|
500
|
+
"@esbuild/aix-ppc64": "0.28.0",
|
|
501
|
+
"@esbuild/android-arm": "0.28.0",
|
|
502
|
+
"@esbuild/android-arm64": "0.28.0",
|
|
503
|
+
"@esbuild/android-x64": "0.28.0",
|
|
504
|
+
"@esbuild/darwin-arm64": "0.28.0",
|
|
505
|
+
"@esbuild/darwin-x64": "0.28.0",
|
|
506
|
+
"@esbuild/freebsd-arm64": "0.28.0",
|
|
507
|
+
"@esbuild/freebsd-x64": "0.28.0",
|
|
508
|
+
"@esbuild/linux-arm": "0.28.0",
|
|
509
|
+
"@esbuild/linux-arm64": "0.28.0",
|
|
510
|
+
"@esbuild/linux-ia32": "0.28.0",
|
|
511
|
+
"@esbuild/linux-loong64": "0.28.0",
|
|
512
|
+
"@esbuild/linux-mips64el": "0.28.0",
|
|
513
|
+
"@esbuild/linux-ppc64": "0.28.0",
|
|
514
|
+
"@esbuild/linux-riscv64": "0.28.0",
|
|
515
|
+
"@esbuild/linux-s390x": "0.28.0",
|
|
516
|
+
"@esbuild/linux-x64": "0.28.0",
|
|
517
|
+
"@esbuild/netbsd-arm64": "0.28.0",
|
|
518
|
+
"@esbuild/netbsd-x64": "0.28.0",
|
|
519
|
+
"@esbuild/openbsd-arm64": "0.28.0",
|
|
520
|
+
"@esbuild/openbsd-x64": "0.28.0",
|
|
521
|
+
"@esbuild/openharmony-arm64": "0.28.0",
|
|
522
|
+
"@esbuild/sunos-x64": "0.28.0",
|
|
523
|
+
"@esbuild/win32-arm64": "0.28.0",
|
|
524
|
+
"@esbuild/win32-ia32": "0.28.0",
|
|
525
|
+
"@esbuild/win32-x64": "0.28.0"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
"node_modules/fsevents": {
|
|
529
|
+
"version": "2.3.3",
|
|
530
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
531
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
532
|
+
"dev": true,
|
|
533
|
+
"hasInstallScript": true,
|
|
534
|
+
"license": "MIT",
|
|
535
|
+
"optional": true,
|
|
536
|
+
"os": [
|
|
537
|
+
"darwin"
|
|
538
|
+
],
|
|
539
|
+
"engines": {
|
|
540
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
541
|
+
}
|
|
542
|
+
},
|
|
543
|
+
"node_modules/tsx": {
|
|
544
|
+
"version": "4.22.3",
|
|
545
|
+
"resolved": "https://registry.npmjs.org/tsx/-/tsx-4.22.3.tgz",
|
|
546
|
+
"integrity": "sha512-mdoNxBC/cSQObGGVQ5Bpn5i+yv7j68gk3Nfm3wFjcJg3Z0Mix9jzAFfP12prmm5eVGmDKtp0yyArrs0Q+8gZHg==",
|
|
547
|
+
"dev": true,
|
|
548
|
+
"license": "MIT",
|
|
549
|
+
"dependencies": {
|
|
550
|
+
"esbuild": "~0.28.0"
|
|
551
|
+
},
|
|
552
|
+
"bin": {
|
|
553
|
+
"tsx": "dist/cli.mjs"
|
|
554
|
+
},
|
|
555
|
+
"engines": {
|
|
556
|
+
"node": ">=18.0.0"
|
|
557
|
+
},
|
|
558
|
+
"optionalDependencies": {
|
|
559
|
+
"fsevents": "~2.3.3"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"node_modules/typescript": {
|
|
563
|
+
"version": "5.9.3",
|
|
564
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
565
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
566
|
+
"dev": true,
|
|
567
|
+
"license": "Apache-2.0",
|
|
568
|
+
"bin": {
|
|
569
|
+
"tsc": "bin/tsc",
|
|
570
|
+
"tsserver": "bin/tsserver"
|
|
571
|
+
},
|
|
572
|
+
"engines": {
|
|
573
|
+
"node": ">=14.17"
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
"node_modules/undici-types": {
|
|
577
|
+
"version": "6.21.0",
|
|
578
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
579
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
580
|
+
"dev": true,
|
|
581
|
+
"license": "MIT"
|
|
582
|
+
},
|
|
583
|
+
"node_modules/ws": {
|
|
584
|
+
"version": "8.21.0",
|
|
585
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
|
|
586
|
+
"integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
|
|
587
|
+
"license": "MIT",
|
|
588
|
+
"engines": {
|
|
589
|
+
"node": ">=10.0.0"
|
|
590
|
+
},
|
|
591
|
+
"peerDependencies": {
|
|
592
|
+
"bufferutil": "^4.0.1",
|
|
593
|
+
"utf-8-validate": ">=5.0.2"
|
|
594
|
+
},
|
|
595
|
+
"peerDependenciesMeta": {
|
|
596
|
+
"bufferutil": {
|
|
597
|
+
"optional": true
|
|
598
|
+
},
|
|
599
|
+
"utf-8-validate": {
|
|
600
|
+
"optional": true
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "my-cms",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.35",
|
|
4
4
|
"description": "CMS server on @tomorrowos/sdk. Add your UI (React, static files, etc.) alongside this server.",
|
|
5
5
|
"private": true,
|
|
6
6
|
"type": "module",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"build-player": "tomorrowos build --platform tizen"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@tomorrowos/sdk": "^0.9.
|
|
16
|
+
"@tomorrowos/sdk": "^0.9.35",
|
|
17
17
|
"dotenv": "^17.2.3",
|
|
18
18
|
"tsx": "^4.19.0"
|
|
19
19
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "my-cms",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.35",
|
|
4
4
|
"description": "TomorrowOS CMS for Vercel / v0 Publish (Fluid Function + WebSockets + optional Next Preview).",
|
|
5
5
|
"private": true,
|
|
6
6
|
"type": "module",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"build-player": "tomorrowos build --platform tizen"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@tomorrowos/sdk": "^0.9.
|
|
20
|
+
"@tomorrowos/sdk": "^0.9.35",
|
|
21
21
|
"dotenv": "^17.2.3",
|
|
22
22
|
"tsx": "^4.19.0"
|
|
23
23
|
},
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# Default: SQLite (good for ≤5 screens / demos).
|
|
2
|
-
# TOMORROWOS_STORE=sqlite
|
|
3
|
-
# TOMORROWOS_DB_PATH=./data/tomorrowos.db
|
|
4
|
-
|
|
5
|
-
# Supabase/Postgres (recommended for >5 screens).
|
|
6
|
-
# On Replit use SUPABASE_URL — DATABASE_URL is often a reserved Secret.
|
|
7
|
-
# TOMORROWOS_STORE=supabase
|
|
8
|
-
# SUPABASE_URL=postgresql://postgres:[PASSWORD]@[HOST]:5432/postgres
|
|
9
|
-
# DATABASE_SSL=true
|
|
10
|
-
# DATABASE_URL=postgresql://... # optional fallback outside Replit
|
|
11
|
-
|
|
12
|
-
# Optional: override the default deterministic pairing-code secret.
|
|
13
|
-
# PAIRING_CODE_SECRET=
|
|
14
|
-
|
|
15
|
-
# Optional: upload media to Cloudinary instead of local / Object Storage.
|
|
16
|
-
# CLOUDINARY_CLOUD_NAME=
|
|
17
|
-
# CLOUDINARY_API_KEY=
|
|
18
|
-
# CLOUDINARY_API_SECRET=
|
|
19
|
-
# CLOUDINARY_FOLDER=tomorrowos
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# Default: SQLite (good for ≤5 screens / demos).
|
|
2
|
-
# TOMORROWOS_STORE=sqlite
|
|
3
|
-
# TOMORROWOS_DB_PATH=./data/tomorrowos.db
|
|
4
|
-
|
|
5
|
-
# Supabase/Postgres (recommended for >5 screens).
|
|
6
|
-
# On Replit use SUPABASE_URL — DATABASE_URL is often a reserved Secret.
|
|
7
|
-
# TOMORROWOS_STORE=supabase
|
|
8
|
-
# SUPABASE_URL=postgresql://postgres:[PASSWORD]@[HOST]:5432/postgres
|
|
9
|
-
# DATABASE_SSL=true
|
|
10
|
-
# DATABASE_URL=postgresql://... # optional fallback outside Replit
|
|
11
|
-
|
|
12
|
-
# Optional: override the default deterministic pairing-code secret.
|
|
13
|
-
# PAIRING_CODE_SECRET=
|
|
14
|
-
|
|
15
|
-
# Optional: upload media to Cloudinary instead of local / Object Storage.
|
|
16
|
-
# CLOUDINARY_CLOUD_NAME=
|
|
17
|
-
# CLOUDINARY_API_KEY=
|
|
18
|
-
# CLOUDINARY_API_SECRET=
|
|
19
|
-
# CLOUDINARY_FOLDER=tomorrowos
|