Files
WeHub Mirror 6bf8bebf51
CI / Test and Build (push) Failing after 1s
CI / Migrate Dev DB (push) Has been skipped
CI / Migrate DB (push) Has been skipped
CodeQL / Analyze actions (push) Has been cancelled
CodeQL / Analyze javascript-typescript (push) Has been cancelled
CI / Detect Version (push) Has been cancelled
CI / Detect Desktop Changes (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/cron.Dockerfile, ubuntu-latest, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build AMD64 (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/cron.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/db.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/pii.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/realtime.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-8vcpu-ubuntu-2404-arm, ./docker/app.Dockerfile, linux-arm64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
Helm Chart / Lint, test, and validate chart (push) Has been cancelled
Helm Chart / Chart version bumped (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
CI / Build Dev ECR (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core) (push) Has been cancelled
CI / Promote Images (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Check Desktop Signing Secrets (push) Has been cancelled
CI / Desktop Release (push) Has been cancelled
CI / Create Desktop Prerelease (push) Has been cancelled
CI / Desktop Prerelease Build (push) Has been cancelled
CI / Publish Desktop Prerelease (push) Has been cancelled
CI / Prune Desktop Prereleases (push) Has been cancelled
Helm Chart / Install on kind and run helm test (push) Has been cancelled
WeHub snapshot of cb28d14c6f2c081de7a0d8729a8c816c9adef67a
2026-08-10 11:17:50 +08:00

274 lines
10 KiB
JSON

{
"name": "sim",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"engines": {
"bun": ">=1.2.13",
"node": ">=22.19.0"
},
"scripts": {
"dev": "bun run dev:cache:cap && next dev --port 3000",
"dev:capped": "bun run dev:cache:cap && NODE_OPTIONS='--max-old-space-size=4096' next dev --port 3000",
"dev:cache:cap": "bun run ../../scripts/prune-turbopack-cache.ts",
"dev:clean": "rm -rf .next/dev/cache",
"dev:webpack": "next dev --webpack",
"load:workflow": "bun run load:workflow:baseline",
"load:workflow:baseline": "BASE_URL=${BASE_URL:-http://localhost:3000} WARMUP_DURATION=${WARMUP_DURATION:-10} WARMUP_RATE=${WARMUP_RATE:-2} PEAK_RATE=${PEAK_RATE:-8} HOLD_DURATION=${HOLD_DURATION:-20} bunx artillery run scripts/load/workflow-concurrency.yml",
"load:workflow:waves": "BASE_URL=${BASE_URL:-http://localhost:3000} WAVE_ONE_DURATION=${WAVE_ONE_DURATION:-10} WAVE_ONE_RATE=${WAVE_ONE_RATE:-6} QUIET_DURATION=${QUIET_DURATION:-5} WAVE_TWO_DURATION=${WAVE_TWO_DURATION:-15} WAVE_TWO_RATE=${WAVE_TWO_RATE:-8} WAVE_THREE_DURATION=${WAVE_THREE_DURATION:-20} WAVE_THREE_RATE=${WAVE_THREE_RATE:-10} bunx artillery run scripts/load/workflow-waves.yml",
"load:workflow:isolation": "BASE_URL=${BASE_URL:-http://localhost:3000} ISOLATION_DURATION=${ISOLATION_DURATION:-30} TOTAL_RATE=${TOTAL_RATE:-9} WORKSPACE_A_WEIGHT=${WORKSPACE_A_WEIGHT:-8} WORKSPACE_B_WEIGHT=${WORKSPACE_B_WEIGHT:-1} bunx artillery run scripts/load/workflow-isolation.yml",
"build": "bun run build:sandbox-bundles && NODE_OPTIONS='--max-old-space-size=8192' next build",
"build:sandbox-bundles": "bun run ./lib/execution/sandbox/bundles/build.ts",
"start": "next start",
"prepare": "cd ../.. && bun husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"email:dev": "email dev --dir components/emails",
"type-check": "tsc --noEmit",
"lint": "biome check --write --unsafe .",
"lint:check": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"generate:pi-model-catalog": "bun run scripts/generate-pi-model-catalog.ts",
"generate-docs": "bun run ../../scripts/generate-docs.ts",
"org:consolidate-users": "bun run scripts/consolidate-users-into-organization.ts"
},
"dependencies": {
"@1password/sdk": "0.3.1",
"@a2a-js/sdk": "1.0.0-alpha.0",
"@anthropic-ai/sdk": "0.115.0",
"@aws-sdk/client-appconfig": "3.1032.0",
"@aws-sdk/client-appconfigdata": "3.1032.0",
"@aws-sdk/client-athena": "3.1032.0",
"@aws-sdk/client-bedrock-runtime": "3.1032.0",
"@aws-sdk/client-cloudformation": "3.1032.0",
"@aws-sdk/client-cloudwatch": "3.1032.0",
"@aws-sdk/client-cloudwatch-logs": "3.1032.0",
"@aws-sdk/client-codepipeline": "3.1032.0",
"@aws-sdk/client-dynamodb": "3.1032.0",
"@aws-sdk/client-iam": "3.1032.0",
"@aws-sdk/client-identitystore": "3.1032.0",
"@aws-sdk/client-organizations": "3.1032.0",
"@aws-sdk/client-rds-data": "3.1032.0",
"@aws-sdk/client-s3": "3.1032.0",
"@aws-sdk/client-secrets-manager": "3.1032.0",
"@aws-sdk/client-sesv2": "3.1032.0",
"@aws-sdk/client-sqs": "3.1032.0",
"@aws-sdk/client-sso-admin": "3.1032.0",
"@aws-sdk/client-sts": "3.1032.0",
"@aws-sdk/client-textract": "3.1032.0",
"@aws-sdk/lib-dynamodb": "3.1032.0",
"@aws-sdk/s3-request-presigner": "3.1032.0",
"@azure/communication-email": "1.0.0",
"@azure/storage-blob": "12.27.0",
"@better-auth/sso": "1.6.23",
"@better-auth/stripe": "1.6.23",
"@browserbasehq/stagehand": "^3.2.1",
"@calcom/embed-react": "1.5.3",
"@cerebras/cerebras_cloud_sdk": "^1.23.0",
"@daytona/sdk": "0.200.0",
"@e2b/code-interpreter": "^2.7.0",
"@earendil-works/pi-ai": "0.80.10",
"@earendil-works/pi-coding-agent": "0.80.10",
"@floating-ui/dom": "1.7.6",
"@google-cloud/storage": "7.21.0",
"@google/genai": "2.13.0",
"@hookform/resolvers": "5.2.2",
"@linear/sdk": "40.0.0",
"@marsidev/react-turnstile": "1.4.2",
"@modelcontextprotocol/sdk": "1.29.0",
"@monaco-editor/react": "4.7.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/core": "2.8.0",
"@opentelemetry/exporter-logs-otlp-http": "0.219.0",
"@opentelemetry/exporter-metrics-otlp-http": "0.219.0",
"@opentelemetry/exporter-trace-otlp-http": "0.219.0",
"@opentelemetry/resources": "2.8.0",
"@opentelemetry/sdk-metrics": "2.8.0",
"@opentelemetry/sdk-node": "0.219.0",
"@opentelemetry/sdk-trace-base": "2.8.0",
"@opentelemetry/sdk-trace-node": "2.8.0",
"@opentelemetry/semantic-conventions": "^1.32.0",
"@radix-ui/react-avatar": "1.1.10",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "1.2.2",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@react-email/components": "1.0.12",
"@react-email/render": "2.1.0",
"@sim/audit": "workspace:*",
"@sim/browser-protocol": "workspace:*",
"@sim/desktop-bridge": "workspace:*",
"@sim/emcn": "workspace:*",
"@sim/logger": "workspace:*",
"@sim/platform-authz": "workspace:*",
"@sim/realtime-protocol": "workspace:*",
"@sim/runtime-secrets": "workspace:*",
"@sim/security": "workspace:*",
"@sim/terminal-protocol": "workspace:*",
"@sim/utils": "workspace:*",
"@sim/workflow-persistence": "workspace:*",
"@sim/workflow-renderer": "workspace:*",
"@sim/workflow-types": "workspace:*",
"@t3-oss/env-nextjs": "0.13.4",
"@tanstack/react-query": "5.90.8",
"@tanstack/react-virtual": "3.13.24",
"@tiptap/core": "3.26.1",
"@tiptap/extension-code-block": "3.26.1",
"@tiptap/extension-collaboration": "3.26.1",
"@tiptap/extension-collaboration-caret": "3.26.1",
"@tiptap/extension-image": "3.26.1",
"@tiptap/extension-list": "3.26.1",
"@tiptap/extension-placeholder": "3.26.1",
"@tiptap/extension-table": "3.26.1",
"@tiptap/markdown": "3.26.1",
"@tiptap/pm": "3.26.1",
"@tiptap/react": "3.26.1",
"@tiptap/starter-kit": "3.26.1",
"@tiptap/suggestion": "3.26.1",
"@tiptap/y-tiptap": "3.0.7",
"@trigger.dev/sdk": "4.5.7",
"@typescript/typescript6": "^6.0.2",
"@xterm/addon-fit": "0.11.0",
"@xterm/addon-unicode11": "0.9.0",
"@xterm/addon-web-links": "0.12.0",
"@xterm/addon-webgl": "0.19.0",
"@xterm/xterm": "6.0.0",
"ajv": "8.18.0",
"archiver": "8.0.0",
"better-auth": "1.6.23",
"binary-extensions": "3.1.0",
"browser-image-compression": "^2.0.2",
"busboy": "1.6.0",
"cheerio": "1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"croner": "^9.0.0",
"cronstrue": "3.3.0",
"csv-parse": "6.1.0",
"date-fns": "4.1.0",
"decimal.js": "10.6.0",
"docx": "^9.6.1",
"docx-preview": "^0.3.7",
"drizzle-orm": "^0.45.2",
"echarts": "6.1.0",
"es-toolkit": "1.45.1",
"fluent-ffmpeg": "2.1.3",
"framer-motion": "^12.5.0",
"google-auth-library": "10.5.0",
"gray-matter": "^4.0.3",
"groq-sdk": "^0.15.0",
"heic-convert": "2.1.0",
"heic-decode": "2.1.0",
"html-to-text": "^9.0.5",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.6",
"idb-keyval": "6.2.2",
"image-size": "2.0.2",
"imapflow": "1.2.4",
"input-otp": "^1.4.2",
"ioredis": "^5.6.0",
"ipaddr.js": "2.3.0",
"isolated-vm": "6.1.2",
"jose": "6.0.11",
"js-tiktoken": "1.0.21",
"js-yaml": "4.3.1",
"jsdom": "^26.0.0",
"jszip": "3.10.1",
"lib0": "0.2.117",
"lru-cache": "11.3.6",
"mammoth": "^1.9.0",
"mermaid": "11.16.1",
"micromatch": "4.0.8",
"monaco-editor": "0.55.1",
"mongodb": "6.19.0",
"mysql2": "3.14.3",
"neo4j-driver": "6.0.1",
"next": "16.2.12",
"next-mdx-remote": "^6.0.0",
"next-runtime-env": "3.3.0",
"next-themes": "^0.4.6",
"nodemailer": "9.0.1",
"nuqs": "2.8.9",
"officeparser": "^5.2.0",
"openai": "7.0.0",
"pdf-lib": "1.17.1",
"pdfjs-dist": "5.4.296",
"postgres": "^3.4.5",
"posthog-js": "1.364.4",
"posthog-node": "5.28.9",
"pptxgenjs": "4.0.1",
"prismjs": "^1.30.0",
"re2js": "2.8.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.54.2",
"react-pdf": "10.4.1",
"react-simple-code-editor": "^0.14.1",
"reactflow": "^11.11.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "4.0.1",
"resend": "^4.1.2",
"rss-parser": "3.13.0",
"sharp": "0.35.3",
"socket.io-client": "4.8.1",
"ssh2": "^1.17.0",
"streamdown": "2.5.0",
"stripe": "18.5.0",
"svix": "1.88.0",
"tailwindcss-animate": "^1.0.7",
"three": "0.177.0",
"tldts": "7.0.30",
"twilio": "5.9.0",
"typebox": "1.1.38",
"undici": "7.29.0",
"unpdf": "1.4.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"y-protocols": "1.0.7",
"yjs": "13.6.31",
"zod": "4.3.6",
"zustand": "^5.0.13"
},
"devDependencies": {
"@sim/testing": "workspace:*",
"@sim/tsconfig": "workspace:*",
"@tailwindcss/typography": "0.5.19",
"@testing-library/jest-dom": "^6.6.3",
"@trigger.dev/build": "4.5.7",
"@types/archiver": "8.0.0",
"@types/busboy": "1.5.4",
"@types/fluent-ffmpeg": "2.1.28",
"@types/heic-convert": "2.1.1",
"@types/html-to-text": "9.0.4",
"@types/js-yaml": "4.0.9",
"@types/jsdom": "21.1.7",
"@types/micromatch": "4.0.10",
"@types/node": "24.2.1",
"@types/nodemailer": "8.0.1",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ssh2": "^1.15.5",
"@types/three": "0.177.0",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.0",
"postcss": "^8",
"react-email": "6.9.0",
"tailwindcss": "^3.4.1",
"typescript": "^7.0.2",
"vitest": "^4.1.0"
}
}