2025-12-18 15:55:15 -08:00
|
|
|
{
|
Rename all arch references to plano across the codebase
Complete rebrand from "Arch"/"archgw" to "Plano" including:
- Config files: arch_config_schema.yaml, workflow, demo configs
- Environment variables: ARCH_CONFIG_* → PLANO_CONFIG_*
- Python CLI: variables, functions, file paths, docker mounts
- Rust crates: config paths, log messages, metadata keys
- Docker/build: Dockerfile, supervisord, .dockerignore, .gitignore
- Docker Compose: volume mounts and env vars across all demos/tests
- GitHub workflows: job/step names
- Shell scripts: log messages
- Demos: Python code, READMEs, VS Code configs, Grafana dashboard
- Docs: RST includes, code comments, config references
- Package metadata: package.json, pyproject.toml, uv.lock
External URLs (docs.archgw.com, github.com/katanemo/archgw) left as-is.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 20:15:37 -08:00
|
|
|
"name": "plano-monorepo",
|
2025-12-18 15:55:15 -08:00
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"workspaces": [
|
|
|
|
|
"apps/*",
|
|
|
|
|
"packages/*"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "turbo run dev",
|
|
|
|
|
"build": "turbo run build",
|
|
|
|
|
"lint": "turbo run lint",
|
|
|
|
|
"format": "turbo run format",
|
|
|
|
|
"typecheck": "turbo run typecheck",
|
|
|
|
|
"clean": "turbo run clean && rm -rf node_modules"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"turbo": "^2.6.3"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=18.0.0"
|
|
|
|
|
},
|
2025-12-22 15:02:45 -08:00
|
|
|
"packageManager": "npm@10.0.0",
|
|
|
|
|
"dependencies": {
|
2026-01-28 17:52:39 -08:00
|
|
|
"next": "^16.1.6",
|
2025-12-22 15:02:45 -08:00
|
|
|
"react": "^19.2.3",
|
|
|
|
|
"resend": "^6.6.0"
|
|
|
|
|
}
|
2025-12-18 15:55:15 -08:00
|
|
|
}
|