2566ae705f
Project CI / AI game creator shell Rust shard 2/4 (push) Successful in 3m53s
Project CI / AI game creator shell Rust shard 1/4 (push) Successful in 4m11s
Project CI / AI game creator shell Rust shard 3/4 (push) Successful in 4m6s
Project CI / AI game creator shell Rust shard 4/4 (push) Successful in 4m2s
Project CI / AI game creator shell Rust smoke (push) Successful in 1m26s
Project CI / AI game creator shell Rust crates (push) Successful in 2m21s
Project CI / Backend tests (push) Successful in 6m22s
Project CI / Native shell tests (push) Successful in 5m25s
Project CI / Repository checks (push) Successful in 2m17s
Project CI / Frontend tests (push) Successful in 2m58s
Project CI / AI game creator shell web tests (push) Successful in 2m6s
上一轮把 2466 条 bin target 单测切成 4 片放在同一个 job 内多进程并行,run 2102 证明这条路 不通:门禁步骤跑满 18 分钟仍未结束,比整套串行的 507 秒还慢——同一容器内这几片共享 HOME、target 目录与固定临时路径,会互相拖慢。这一轮改成按 job 拆分。 - run-rust-shell-test-shards.mjs 新增 --shard-index=<i>:只跑第 i 片,供 CI 的每个分片 job 使用;覆盖自校验(片并集等于 --list 全集且互斥)仍针对全集执行,所以每个 job 都会 发现分片规则改动,不会被"只跑一片"绕过。负例 --shard-index 超出 --shards 立即失败。 不传 --shard-index 时行为不变(一条命令把 N 片放进程里并行),留给本地全量自测。 - project-ci.yml 由 7 个 job 变 11 个:原 AGC Rust job 拆成 AI game creator shell Rust shard 1/4 ~ 4/4 与 AI game creator shell Rust smoke,加上已有的 Rust crates,AGC 相关 门禁共 6 个 job。4 个片 job 只预热 AGC 壳自己那份锁定依赖,且与 smoke、crates 一样都是 纯 cargo 门禁,因此这 6 个 job 都不再执行 npm ci(每个省 1~3 分钟)。 - check-native-shells.mjs 分组由五个变十个:agc-rust-shard-1 ~ agc-rust-shard-4 与 agc-rust-smoke 取代 agc-rust-shell;每个分片分组的命令是 `npm run ai-game-creator-shell:check:rust:shell -- --shard-index=<i>`。 - project-ci-workflow.test.ts 相应更新:11 个 job、6 个 job 免 npm ci、10 个分组各被一个 job 恰好调用一次,并新增「每个分片 job 都落到 --shard-index」「4 个 index 各一次」 「分片运行器保留覆盖自校验」等断言。 - 同步运维文档、development-workflow、decision-log、pitfalls 与 gitea-ci-triage 技能到 job 级分片口径,并记录 run 2102 的反面实验,避免以后又改回单 job 内并行。 验证:npx vitest run scripts/project-ci-workflow.test.ts(12 passed)、eslint、prettier、 check:encoding(13330 文件)、check:doc-index、--groups=contract、mobile check-config 全绿; 分片运行器本地以 agent-runtime-core(7 条 → 2/2/2/1)验证 --shard-index 四个 index 各自 只跑一片、片 TMPDIR 隔离、无 index 时全量模式不变。Gitea master 分支保护需补 6 个新 context(共十一个),其中含 4 个分片 job、smoke job 与 crates job。 Co-authored-by: DotCraft <273930855+dotcraft-ai@users.noreply.github.com>
279 lines
20 KiB
JSON
279 lines
20 KiB
JSON
{
|
|
"name": "react-example",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"packageManager": "npm@10.9.7",
|
|
"workspaces": [
|
|
"apps/admin-web",
|
|
"apps/ai-game-creator-shell",
|
|
"apps/desktop-shell",
|
|
"apps/mobile-shell",
|
|
"apps/preview-deployer-web",
|
|
"packages/image-canvas-core",
|
|
"packages/image-canvas-react",
|
|
"packages/agc-plugin-sdk",
|
|
"packages/shared",
|
|
"plugins/agc-cocos-editor",
|
|
"tools/spine-json-export-validator"
|
|
],
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"dev": "node scripts/dev.mjs",
|
|
"dev:spacetime": "node scripts/dev.mjs spacetime",
|
|
"dev:api-server": "node scripts/dev.mjs api-server",
|
|
"dev:bgfilter-worker": "node scripts/dev.mjs bgfilter-worker",
|
|
"bgfilter-worker:load-smoke": "node scripts/bgfilter-worker-load-smoke.mjs",
|
|
"bgfilter-worker:fault-smoke": "node scripts/bgfilter-worker-load-smoke.mjs fault",
|
|
"bgfilter-worker:smoke-test": "node --test scripts/bgfilter-worker-load-smoke.test.mjs",
|
|
"dev:web": "node scripts/dev.mjs web",
|
|
"dev:admin-web": "node scripts/dev.mjs admin-web",
|
|
"server-manager:panel": "cargo run -p server-manager-panel --manifest-path server-rs/Cargo.toml",
|
|
"preview-deployer:server": "cargo run -p preview-deployer-server --manifest-path server-rs/Cargo.toml",
|
|
"preview-deployer:web:dev": "npm --prefix apps/preview-deployer-web run dev",
|
|
"preview-deployer:web:typecheck": "npm --prefix apps/preview-deployer-web run typecheck",
|
|
"preview-deployer:web:test": "npm --prefix apps/preview-deployer-web run test",
|
|
"preview-deployer:web:build": "npm --prefix apps/preview-deployer-web run build",
|
|
"dev:spacetime:logs": "node scripts/run-bash-script.mjs scripts/spacetime-logs-local.sh",
|
|
"otel:debug": "node scripts/run-otelcol.mjs debug",
|
|
"otel:rider": "node scripts/run-otelcol.mjs rider",
|
|
"admin-web:build": "node scripts/admin-web-build.mjs build",
|
|
"admin-web:typecheck": "node scripts/admin-web-build.mjs typecheck",
|
|
"admin-web:preview": "npm --prefix apps/admin-web run preview --",
|
|
"spacetime:generate": "node scripts/generate-spacetime-bindings.mjs",
|
|
"spacetime:external-generation:maintain": "node scripts/spacetime-maintain-external-generation-jobs.mjs",
|
|
"spacetime:editor-image-asset-kind:clean": "node scripts/spacetime-clean-editor-image-asset-kind.mjs",
|
|
"spacetime:editor-canvas-layout:migrate": "node scripts/spacetime-migrate-editor-canvas-layout.mjs",
|
|
"spacetime:editor-canvas-resources:repair": "node scripts/spacetime-repair-editor-canvas-resources.mjs",
|
|
"spacetime:wechat-virtual-payment:reconcile": "node scripts/reconcile-wechat-virtual-payment-order.mjs",
|
|
"check:wechat-virtual-payment-reconcile": "node scripts/check-wechat-virtual-payment-reconcile.mjs",
|
|
"check:api-server-env": "node scripts/check-api-server-env.mjs",
|
|
"check:admin-account-procedures": "node scripts/check-admin-account-procedures.mjs",
|
|
"check:editor-idempotency-procedures": "node scripts/spacetime-editor-idempotency-smoke.mjs",
|
|
"check:spacetime-runtime-access": "node scripts/check-spacetime-runtime-access.mjs",
|
|
"check:module-runtime-artifact": "node scripts/check-module-runtime-artifact.mjs",
|
|
"deploy:rust:remote": "node scripts/run-bash-script.mjs scripts/deploy-rust-remote.sh",
|
|
"build:production-release": "node scripts/run-bash-script.mjs scripts/build-production-release.sh",
|
|
"build:rust:ubuntu": "node scripts/run-bash-script.mjs scripts/deploy-rust-remote.sh",
|
|
"build": "node scripts/build-gate.mjs",
|
|
"build:raw": "node scripts/vite-cli.mjs build",
|
|
"preview": "node scripts/vite-cli.mjs preview",
|
|
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
"audit:rust-build-cache": "node scripts/rust-build-cache.mjs",
|
|
"clean:rust-incremental": "node scripts/rust-build-cache.mjs --clean-incremental",
|
|
"test:rust-build-cache": "node --test scripts/rust-build-cache.test.mjs",
|
|
"check:encoding": "node scripts/check-encoding.mjs",
|
|
"check:doc-index": "node scripts/check-doc-index.mjs",
|
|
"check:git-hooks": "node --test scripts/git-hooks.test.mjs",
|
|
"check:npm-workspaces": "node --test scripts/check-npm-workspaces.test.mjs && node scripts/check-npm-workspaces.mjs",
|
|
"check:repository-ci": "bash scripts/check-repository-ci.sh",
|
|
"check:rustfmt": "cargo fmt --all --manifest-path server-rs/Cargo.toml -- --check && cargo fmt --all --manifest-path apps/ai-game-creator-shell/src-tauri/Cargo.toml -- --check",
|
|
"check:spacetime-schema": "node scripts/check-spacetime-schema-guard.mjs",
|
|
"check:production-ops": "node scripts/check-production-ops-guardrails.mjs",
|
|
"check:preview-deployer": "node scripts/check-preview-deployer.mjs",
|
|
"check:maintenance-page": "node scripts/check-maintenance-page.mjs",
|
|
"check:database-backup": "node scripts/check-database-backup-to-oss.mjs",
|
|
"check:production-health-patrol": "node scripts/check-production-health-patrol.mjs",
|
|
"check:production-health-patrol-env": "node scripts/check-production-health-patrol-env-check.mjs",
|
|
"check:production-api-release": "node scripts/check-production-api-release.mjs",
|
|
"check:production-api-deploy": "node scripts/check-production-api-deploy.mjs",
|
|
"check:pingora-gateway-smoke": "node scripts/check-pingora-gateway-smoke.mjs",
|
|
"check:nginx-pingora-canary": "node scripts/check-nginx-pingora-canary.mjs",
|
|
"check:nginx-spa-routes": "node scripts/check-nginx-spa-routes.mjs",
|
|
"check:pingora-route-parity": "node scripts/check-pingora-route-parity.mjs",
|
|
"check:pingora-canary-live": "node scripts/check-pingora-canary-live.mjs",
|
|
"check:pingora-canary-live-guard": "node scripts/check-pingora-canary-live-guard.mjs",
|
|
"check:pingora-realpath-canary-toggle": "node scripts/check-pingora-realpath-canary-toggle.mjs",
|
|
"check:pingora-direct-preflight": "node -- scripts/check-pingora-direct-preflight.mjs && node scripts/check-pingora-direct-preflight-guard.mjs",
|
|
"check:pingora-direct-live": "node scripts/check-pingora-direct-live.mjs",
|
|
"check:pingora-direct-live-guard": "node scripts/check-pingora-direct-live-guard.mjs",
|
|
"check:pingora-direct-enable": "node scripts/check-pingora-direct-enable.mjs",
|
|
"check:pingora-direct-rollback": "node scripts/check-pingora-direct-rollback.mjs",
|
|
"check:pingora-health-patrol-env-switch": "node scripts/check-pingora-health-patrol-env-switch.mjs",
|
|
"check:pingora-gateway-env-shadow-switch": "node scripts/check-pingora-gateway-env-shadow-switch.mjs",
|
|
"check:pingora-tls-cert-sync": "node scripts/check-pingora-tls-cert-sync.mjs",
|
|
"check:pingora-current-release-audit": "node scripts/check-pingora-current-release-audit.mjs",
|
|
"check:pingora-direct-rehearsal-status": "node scripts/check-pingora-direct-rehearsal-status.mjs",
|
|
"check:pingora-cutover-status-snapshot": "node scripts/check-pingora-cutover-status-snapshot.mjs",
|
|
"check:pingora-cutover-evidence-bundle": "node scripts/check-pingora-cutover-evidence-bundle.mjs",
|
|
"check:pingora-cutover-command-evidence": "node scripts/check-pingora-cutover-command-evidence.mjs",
|
|
"check:pingora-cutover-evidence-verify": "node scripts/check-pingora-cutover-evidence-verify.mjs",
|
|
"check:pingora-cutover-evidence-audit": "node scripts/check-pingora-cutover-evidence-audit.mjs",
|
|
"check:pingora-canary-access-log-parity": "node scripts/check-pingora-canary-access-log-parity-check.mjs",
|
|
"check:pingora-canary-docker": "node scripts/check-pingora-canary-docker.mjs",
|
|
"check:pingora-production-release-build": "node scripts/check-pingora-production-release-build.mjs",
|
|
"check:pingora-release-readiness-plan": "node scripts/check-pingora-release-readiness-plan.mjs",
|
|
"check:pingora-release-readiness": "node scripts/check-pingora-release-readiness.mjs",
|
|
"plan:pingora-direct-cutover": "node scripts/check-pingora-release-readiness.mjs --dry-run-cutover",
|
|
"deploy:pingora-realpath-canary-enable": "bash scripts/deploy/pingora-realpath-canary-enable.sh",
|
|
"deploy:pingora-realpath-canary-disable": "bash scripts/deploy/pingora-realpath-canary-disable.sh",
|
|
"deploy:pingora-direct-enable": "bash scripts/deploy/pingora-direct-enable.sh",
|
|
"deploy:pingora-direct-rollback": "bash scripts/deploy/pingora-direct-rollback.sh",
|
|
"spine-export-validator:dev": "npm --prefix tools/spine-json-export-validator run dev --",
|
|
"spine-export-validator:typecheck": "npm --prefix tools/spine-json-export-validator run typecheck",
|
|
"spine-export-validator:build": "npm --prefix tools/spine-json-export-validator run build",
|
|
"check:wechat-miniprogram-auth": "node scripts/check-wechat-miniprogram-auth-smoke.mjs",
|
|
"check:server-rs-ddd": "npm run check:spacetime-schema && npm run check:spacetime-runtime-access && npm run check:module-runtime-artifact && node scripts/check-server-rs-ddd-boundaries.mjs",
|
|
"lint:eslint": "eslint . --ext .ts,.tsx,.js,.mjs,.cjs --max-warnings 0",
|
|
"typecheck": "tsc -p tsconfig.typecheck-guardrails.json --noEmit",
|
|
"lint": "npm run check:encoding && npm run check:doc-index && npm run check:npm-workspaces && npm run check:git-hooks && npm run check:rustfmt && npm run check:spacetime-schema && npm run check:production-ops && npm run check:preview-deployer && npm run check:maintenance-page && npm run lint:eslint && npm run typecheck",
|
|
"lint:fix": "eslint . --ext .ts,.tsx,.js,.mjs,.cjs --fix && prettier --write .",
|
|
"format:rust": "cargo fmt --all --manifest-path server-rs/Cargo.toml && cargo fmt --all --manifest-path apps/ai-game-creator-shell/src-tauri/Cargo.toml",
|
|
"format": "prettier --write . && npm run format:rust",
|
|
"format:check": "prettier --check . && npm run check:rustfmt",
|
|
"format:staged": "lint-staged",
|
|
"check:pre-push-master": "bash scripts/pre-push-master.sh",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"container:init": "node scripts/container-compose.mjs init",
|
|
"container:build": "node scripts/container-compose.mjs build",
|
|
"container:up": "node scripts/container-compose.mjs up",
|
|
"container:down": "node scripts/container-compose.mjs down",
|
|
"container:logs": "node scripts/container-compose.mjs logs",
|
|
"container:ps": "node scripts/container-compose.mjs ps",
|
|
"container:config": "node scripts/container-compose.mjs config",
|
|
"container:worker-smoke": "node scripts/container-worker-smoke.mjs",
|
|
"check": "npm run lint && npm run test && npm run build && npm run check:native-shells",
|
|
"codegraph:init": "codegraph init -i .",
|
|
"codegraph:index": "codegraph index .",
|
|
"codegraph:sync": "codegraph sync .",
|
|
"codegraph:status": "codegraph status .",
|
|
"rag:index": "node scripts/rag/index-docs.mjs",
|
|
"rag:search": "node scripts/rag/search-docs.mjs",
|
|
"database:backup:oss": "node scripts/database-backup-to-oss.mjs",
|
|
"mobile-shell:dev": "npm --prefix apps/mobile-shell run dev",
|
|
"mobile-shell:typecheck": "npm --prefix apps/mobile-shell run typecheck",
|
|
"mobile-shell:test": "npm --prefix apps/mobile-shell run test",
|
|
"mobile-shell:build-config": "npm --prefix apps/mobile-shell run build-config:smoke",
|
|
"mobile-shell:build:android": "npm --prefix apps/mobile-shell run build:android",
|
|
"mobile-shell:build:ios": "npm --prefix apps/mobile-shell run build:ios",
|
|
"mobile-shell:build-artifacts": "npm --prefix apps/mobile-shell run build-artifacts:smoke",
|
|
"mobile-shell:config": "npm --prefix apps/mobile-shell run config:smoke",
|
|
"mobile-shell:export": "npm --prefix apps/mobile-shell run export:smoke",
|
|
"desktop-shell:dev": "npm --prefix apps/desktop-shell run dev",
|
|
"desktop-shell:build": "npm --prefix apps/desktop-shell run build --",
|
|
"desktop-shell:stage-release-binary": "npm --prefix apps/desktop-shell run stage-release-binary",
|
|
"desktop-shell:typecheck": "npm --prefix apps/desktop-shell run typecheck",
|
|
"desktop-shell:test": "cargo test --manifest-path apps/desktop-shell/src-tauri/Cargo.toml",
|
|
"agc": "npm --prefix apps/ai-game-creator-shell run dev",
|
|
"agc:dev": "npm --prefix apps/ai-game-creator-shell run dev",
|
|
"agc:serve": "npm run agc:typecheck && npm --prefix apps/ai-game-creator-shell run dev-stack",
|
|
"agc:vite": "npm --prefix apps/ai-game-creator-shell run dev-server",
|
|
"agc:backend": "node scripts/dev.mjs backend",
|
|
"agc:config": "npm --prefix apps/ai-game-creator-shell run config --",
|
|
"agc:build": "npm --prefix apps/ai-game-creator-shell run build --",
|
|
"agc:skill-pack:check": "npm --prefix apps/ai-game-creator-shell run skill-pack:check",
|
|
"agc:skill-pack:sync": "npm --prefix apps/ai-game-creator-shell run skill-pack:sync",
|
|
"agc:plugins:test": "node --test plugins/agc-cocos-editor/src/entry.test.mjs",
|
|
"agc:plugins:native-test": "cargo test --manifest-path plugins/agc-cocos-editor/native/cocos-editor-bridge/Cargo.toml",
|
|
"agc:plugins:check": "npm run agc:plugins:test && npm run agc:plugins:native-test",
|
|
"agc:check": "npm run ai-game-creator-shell:check",
|
|
"agc:typecheck": "npm --prefix apps/ai-game-creator-shell run typecheck",
|
|
"agc:test": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-autonomous-playable-lane-defense-deterministic-e2e --",
|
|
"agc:test:chat": "npm --prefix apps/ai-game-creator-shell run test:chat --",
|
|
"agc:test:chat:manual": "npm --prefix apps/ai-game-creator-shell run test:chat:manual --",
|
|
"ai-game-creator-shell:dev": "npm --prefix apps/ai-game-creator-shell run dev",
|
|
"ai-game-creator-shell:dev-server": "npm --prefix apps/ai-game-creator-shell run dev-server",
|
|
"ai-game-creator-shell:build": "npm --prefix apps/ai-game-creator-shell run build --",
|
|
"ai-game-creator-shell:release:upload": "npm --prefix apps/ai-game-creator-shell run release:upload",
|
|
"ai-game-creator-shell:llm-status": "npm --prefix apps/ai-game-creator-shell run llm-status --",
|
|
"ai-game-creator-shell:agent-task": "npm --prefix apps/ai-game-creator-shell run agent-task --",
|
|
"agc:chat": "npm --prefix apps/ai-game-creator-shell run chat --",
|
|
"agc:swarm": "npm --prefix apps/ai-game-creator-shell run swarm --",
|
|
"agc:collaboration-policy-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:collaboration-policy-real-e2e --",
|
|
"agc:mixed-swarm-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:mixed-swarm-real-e2e --",
|
|
"ai-game-creator-shell:agent-run": "npm --prefix apps/ai-game-creator-shell run agent-run --",
|
|
"ai-game-creator-shell:agent-run:smoke": "npm --prefix apps/ai-game-creator-shell run agent-run:smoke",
|
|
"ai-game-creator-shell:agent-runtime:real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:real-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:supervisor-swarm-autonomous-chat-real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-swarm-autonomous-chat-real-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:supervisor-autonomous-playable-lane-defense-real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-autonomous-playable-lane-defense-real-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:supervisor-autonomous-playable-lane-defense-deterministic-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-autonomous-playable-lane-defense-deterministic-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:supervisor-autonomous-playable-lane-defense-deterministic-self-test": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-autonomous-playable-lane-defense-deterministic-self-test --",
|
|
"ai-game-creator-shell:agent-runtime:supervisor-swarm-transient-retry-real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-swarm-transient-retry-real-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:supervisor-swarm-final-reply-transient-retry-real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-swarm-final-reply-transient-retry-real-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:supervisor-swarm-tool-plan-handoff-runner-kill-real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:supervisor-swarm-tool-plan-handoff-runner-kill-real-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:steer-real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:steer-real-e2e --",
|
|
"ai-game-creator-shell:agent-runtime:steer-runner-kill-real-e2e": "npm --prefix apps/ai-game-creator-shell run agent-runtime:steer-runner-kill-real-e2e --",
|
|
"agent-runtime-core:check": "cargo test --manifest-path server-rs/crates/agent-runtime-core/Cargo.toml",
|
|
"agent-runtime-orchestration:check": "cargo test --manifest-path server-rs/crates/agent-runtime-orchestration/Cargo.toml",
|
|
"ai-game-creator-shell:typecheck": "npm --prefix apps/ai-game-creator-shell run typecheck",
|
|
"ai-game-creator-shell:check:web": "npm run ai-game-creator-shell:typecheck && npm run test -- apps/ai-game-creator-shell/tests",
|
|
"ai-game-creator-shell:check:rust:crates": "npm run agent-runtime-core:check && npm run agent-runtime-orchestration:check && cargo test --locked -p platform-llm --manifest-path server-rs/Cargo.toml && cargo test --locked -p shared-contracts --manifest-path server-rs/Cargo.toml game_creation_app",
|
|
"ai-game-creator-shell:check:rust:shell": "node apps/ai-game-creator-shell/scripts/run-rust-shell-test-shards.mjs --shards=4",
|
|
"ai-game-creator-shell:check:rust": "npm run ai-game-creator-shell:check:rust:crates && npm run ai-game-creator-shell:check:rust:shell",
|
|
"ai-game-creator-shell:check": "npm run ai-game-creator-shell:check:web && npm run ai-game-creator-shell:check:rust && npm run ai-game-creator-shell:agent-run:smoke",
|
|
"check:native-shells": "node scripts/check-native-shells.mjs",
|
|
"check:native-shells:contract": "node scripts/check-native-shells.mjs --groups=contract",
|
|
"check:native-shells:shells": "node scripts/check-native-shells.mjs --groups=shells",
|
|
"check:native-shells:agc-web": "node scripts/check-native-shells.mjs --groups=agc-web",
|
|
"check:native-shells:agc-rust-crates": "node scripts/check-native-shells.mjs --groups=agc-rust-crates",
|
|
"check:native-shells:agc-rust-shard-1": "node scripts/check-native-shells.mjs --groups=agc-rust-shard-1",
|
|
"check:native-shells:agc-rust-shard-2": "node scripts/check-native-shells.mjs --groups=agc-rust-shard-2",
|
|
"check:native-shells:agc-rust-shard-3": "node scripts/check-native-shells.mjs --groups=agc-rust-shard-3",
|
|
"check:native-shells:agc-rust-shard-4": "node scripts/check-native-shells.mjs --groups=agc-rust-shard-4",
|
|
"check:native-shells:agc-rust-smoke": "node scripts/check-native-shells.mjs --groups=agc-rust-smoke",
|
|
"check:native-shells:release": "node scripts/check-native-shells.mjs --groups=release"
|
|
},
|
|
"dependencies": {
|
|
"@genarrative/image-canvas-core": "0.1.0",
|
|
"@genarrative/image-canvas-react": "0.1.0",
|
|
"@genarrative/shared": "0.1.0",
|
|
"@lexical/react": "^0.47.0",
|
|
"@lexical/utils": "^0.47.0",
|
|
"@tailwindcss/vite": "^4.1.14",
|
|
"@vitejs/plugin-react": "^5.0.4",
|
|
"dotenv": "^17.2.3",
|
|
"jszip": "^3.10.1",
|
|
"lexical": "^0.47.0",
|
|
"lucide-react": "^0.546.0",
|
|
"motion": "^12.23.24",
|
|
"overlayscrollbars": "2.16.0",
|
|
"overlayscrollbars-react": "0.5.6",
|
|
"qrcode": "^1.5.4",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"three": "^0.184.0",
|
|
"vite": "^6.2.0",
|
|
"zustand": "^5.0.14"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,mjs,cjs,ts,tsx}": [
|
|
"node scripts/lint-staged-eslint.mjs",
|
|
"prettier --write"
|
|
],
|
|
"*.rs": [
|
|
"node scripts/lint-staged-rustfmt.mjs"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@colbymchenry/codegraph": "^0.8.0",
|
|
"@tauri-apps/cli": "^2.11.2",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/node": "^22.14.0",
|
|
"@types/qrcode": "^1.5.6",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"@vitest/coverage-v8": "^0.34.6",
|
|
"autoprefixer": "^10.4.21",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"eslint-plugin-react-refresh": "^0.4.6",
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
"eslint-plugin-unused-imports": "^3.2.0",
|
|
"globals": "^13.24.0",
|
|
"husky": "9.1.7",
|
|
"jsdom": "^22.1.0",
|
|
"lint-staged": "16.4.0",
|
|
"prettier": "^3.3.3",
|
|
"tailwindcss": "^4.1.14",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "~5.8.2",
|
|
"vite": "^6.2.0",
|
|
"vitest": "^0.34.6"
|
|
}
|
|
}
|