feat: initialize unidesk platform

This commit is contained in:
Codex
2026-05-04 11:09:35 +00:00
commit caa80ee5e7
56 changed files with 3273 additions and 0 deletions
@@ -0,0 +1,3 @@
FROM oven/bun:1-alpine
WORKDIR /app
CMD ["bun", "--version"]
@@ -0,0 +1,5 @@
{
"name": "@unidesk/example-service",
"private": true,
"type": "module"
}
@@ -0,0 +1 @@
export const reserved = true;
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true
},
"include": ["src/**/*.ts"]
}