Files
oikos-web/web/vendor/package.json
dtoro ed8a3145b3
Some checks failed
ci / web (push) Has been cancelled
Desktop App / Build Linux (amd64) (push) Has been cancelled
Desktop App / Attach to Release (push) Has been cancelled
oikos-web: extract the client stack from dtoro/oikos
Phase 1 of the hexagonal-architecture plan (dtoro/oikos
plans/2026-08-15-hexagonal-architecture.md). Moves the delivery stack
for the control-room UI into its own repo with its own pipeline:

- web/ — Svelte 5 SPA, verbatim (vendor/ included)
- desktop/ — Wails v3 wrapper, updateURL repointed to
  dtoro/oikos-web releases
- compose/ — Dockerfile + Caddyfile, verbatim (the /wails/* 404 and
  asset no-fallback quirks are load-bearing)
- docker-compose.yml — single web service, same 8091:80 publish,
  mem/cpu limits, and restart policy as the oikos stack's web service
- scripts/deploy.sh — mirrors oikos deploy essentials: CI-green gate,
  TOCTOU guard, version-tagged oikos-web:v$VERSION, prune to 3
- cmd/webhook + scripts/install-webhook.sh — standalone push-to-deploy
  receiver on :9798 (env-only secrets, no Infisical dependency)
- CI: the web job from oikos's ci.yml + the desktop build/release
  workflow, path-adjusted

Own VERSION (0.33.0) with the same bump-on-main rule; starts above
oikos's 0.32.x so the desktop updater sees an upgrade.
2026-08-15 22:20:54 +02:00

107 lines
2.8 KiB
JSON

{
"name": "@joan/procedural-glyph-engine",
"version": "5.0.0",
"description": "Orby — A procedural glyph engine by Joan Sterjo.",
"author": "Joan Sterjo",
"homepage": "https://joansterjo-celonis.github.io/Procedural-glyph-engine/",
"repository": {
"type": "git",
"url": "git+https://github.com/joansterjo-celonis/Procedural-glyph-engine.git"
},
"bugs": {
"url": "https://github.com/joansterjo-celonis/Procedural-glyph-engine/issues"
},
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/joan-engine.js",
"default": "./src/joan-engine.js"
},
"./config": {
"types": "./types/config.d.ts",
"import": "./src/config.js",
"default": "./src/config.js"
},
"./fields": {
"types": "./types/fields.d.ts",
"import": "./src/fields.js",
"default": "./src/fields.js"
},
"./glyphs": {
"types": "./types/glyphs.d.ts",
"import": "./src/glyphs.js",
"default": "./src/glyphs.js"
},
"./sprites": {
"types": "./types/sprites.d.ts",
"import": "./src/sprites.js",
"default": "./src/sprites.js"
},
"./state-director": {
"types": "./types/state-director.d.ts",
"import": "./src/state-director.js",
"default": "./src/state-director.js"
},
"./state-sequence": {
"types": "./types/state-sequence.d.ts",
"import": "./src/state-sequence.js",
"default": "./src/state-sequence.js"
},
"./web-component": {
"types": "./types/web-component.d.ts",
"import": "./src/web-component.js",
"default": "./src/web-component.js"
},
"./web-component/register": {
"types": "./types/web-component-register.d.ts",
"import": "./src/web-component-register.js",
"default": "./src/web-component-register.js"
},
"./styles.css": "./src/styles.css",
"./package.json": "./package.json"
},
"sideEffects": [
"./src/web-component.js",
"./src/web-component-register.js",
"./src/styles.css"
],
"files": [
"src",
"types",
"docs",
"examples",
"README.md",
"LICENSE",
"NOTICE",
"dist/manifest.json",
"dist/joan-engine-v5.standalone.html"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "node scripts/dev.mjs",
"build": "node scripts/build.mjs",
"test": "node --test",
"verify:download": "node scripts/verify-download.mjs",
"check": "npm run test && npm run build && npm run verify:download",
"prepack": "npm run check"
},
"keywords": [
"orby",
"canvas",
"glyph",
"pixel",
"procedural-animation",
"ai-status",
"sprite",
"dither"
],
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=18"
}
}