chore(packages): wire sandbox package

This commit is contained in:
Guillaume ARM 2026-06-14 16:36:13 +02:00
parent 6666b6955a
commit 10c51ce55a
5 changed files with 10 additions and 8 deletions

View File

@ -36,7 +36,7 @@ verification gate is green.
TS unit tests green (`npm test`, `npm run lint`/`check` clean). *No Lua dependency — build first.*
- [x] **M2 — Lua client** ([02-lua-client](./02-lua-client.md)): `libsandbox`/`servers`/`programs`
in place, Lua unit tests green via `just _craftos-test`. *Implements the Protocol contract.*
- [ ] **M3 — Packages** ([03-packages](./03-packages.md)): legacy renamed, new `trapos-sandbox`
- [x] **M3 — Packages** ([03-packages](./03-packages.md)): legacy renamed, new `trapos-sandbox`
package + meta bump wired; `packages/index.json` consistent.
- [ ] **M4 — Integration & tooling** ([04-integration-tooling](./04-integration-tooling.md)):
`just` recipes, `docs/public-ports.md`, TS integration harness + full-boot e2e green.

View File

@ -1,6 +1,6 @@
{
"name": "TrapOS",
"version": "0.8.17",
"version": "0.9.0",
"branch": "next",
"packages": [
"trapos"

View File

@ -6,7 +6,8 @@
"trapos-net": "0.3.0",
"trapos-ui": "0.2.2",
"trapos-ai": "0.7.0",
"trapos-sandbox": "0.2.2",
"trapos": "0.8.17"
"trapos-sandbox": "0.2.3",
"trapos-sandbox-legacy": "0.2.2",
"trapos": "0.9.0"
}
}

View File

@ -1,7 +1,7 @@
{
"name": "trapos-sandbox",
"name": "trapos-sandbox-legacy",
"version": "0.2.2",
"description": "TrapOS sandbox programs for ccpm experiments and Lua learning",
"description": "[legacy] TrapOS sandbox programs for ccpm experiments and Lua learning",
"dependencies": ["trapos-core"],
"files": [
"apis/libcarre.lua",

View File

@ -1,13 +1,14 @@
{
"name": "trapos",
"version": "0.8.17",
"version": "0.9.0",
"description": "TrapOS full install meta-package",
"dependencies": [
"trapos-boot",
"trapos-net",
"trapos-ui",
"trapos-test",
"trapos-ai"
"trapos-ai",
"trapos-sandbox"
],
"files": [],
"autostart": []