-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 6.99 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 6.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "bright-vision",
"version": "0.2.0-1",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"build:mac": "/usr/bin/env bash scripts/build-macos.sh",
"audit:core": "echo 'skip audit:core (bright_vision_core in parent repo)'",
"test": "vitest run",
"test:vision-client": "yarn workspace @brightvision/vision-client test",
"remote:dev": "yarn workspace @brightvision/remote start",
"remote:install": "yarn workspace @brightvision/remote install",
"test:watch": "vitest",
"test:rust": "cd src-tauri && cargo test",
"test:fast": "yarn tsc --noEmit && yarn test",
"test:local": "yarn tsc --noEmit && yarn test && yarn test:rust",
"test:e2e": "playwright test",
"test:e2e:integration": "E2E_INTEGRATION=1 E2E_PYTHON=.venv/bin/python3 playwright test -c playwright.integration.config.ts",
"test:e2e:llm": "BV_COMPACT_SPEC_GEN=1 LLM_SPEC_GEN_TURN_TIMEOUT_S=1800 LLM_SPEC_GEN_TIMEOUT_S=1800 E2E_LLM=1 E2E_PYTHON=.venv/bin/python3 playwright test -c playwright.llm.config.ts --grep-invert @router",
"test:e2e:llm:phased": "E2E_SPEC_GEN_PHASED=1 BV_COMPACT_SPEC_GEN=1 LLM_SPEC_GEN_TURN_TIMEOUT_S=1800 LLM_SPEC_GEN_TIMEOUT_S=1800 E2E_LLM=1 E2E_PYTHON=.venv/bin/python3 playwright test -c playwright.llm.config.ts --grep-invert @router",
"test:e2e:llm:router": "BV_ROUTER_LLM_E2E_ONLY=1 E2E_MODEL_ROUTER=1 BV_COMPACT_SPEC_GEN=1 LLM_SPEC_GEN_TURN_TIMEOUT_S=1800 LLM_SPEC_GEN_TIMEOUT_S=1800 E2E_LLM=1 E2E_PYTHON=.venv/bin/python3 playwright test -c playwright.llm.config.ts --project router-llm",
"test:e2e:llm:single": "E2E_OLLAMA_MODEL=ollama_chat/llama3.2:3b BV_COMPACT_SPEC_GEN=1 LLM_SPEC_GEN_TURN_TIMEOUT_S=1800 LLM_SPEC_GEN_TIMEOUT_S=1800 E2E_LLM=1 E2E_PYTHON=.venv/bin/python3 playwright test -c playwright.llm.config.ts --grep-invert @router",
"test:e2e:fixtures": "sh scripts/verify-e2e-fixture-pack.sh",
"test:llm:core": "PYTHONSAFEPATH=1 BV_COMPACT_SPEC_GEN=1 VISION_AGENT_PREPROC_TIMEOUT_S=0 VISION_SLASH_PREPROC_TIMEOUT_S=300 LLM_TEST_TURN_TIMEOUT_S=900 LLM_SPEC_GEN_TURN_TIMEOUT_S=1800 LLM_SPEC_GEN_TIMEOUT_S=1800 E2E_OLLAMA_MODEL=ollama_chat/llama3.2:3b E2E_LLM=1 .venv/bin/python3 -m pytest tests/core/test_hello_llm.py tests/core/test_agent_llm.py tests/core/test_context_llm.py tests/core/test_todo_list_llm.py tests/core/test_edit_block_llm.py tests/core/test_transcript_llm.py tests/core/test_generate_spec_llm.py tests/core/test_generate_spec_parse.py tests/core/test_http_generate_spec_mock.py -q",
"test:cloud-llm": "PYTHONSAFEPATH=1 E2E_CLOUD_LLM=1 E2E_LLM=1 .venv/bin/python3 -m pytest tests/core/test_cloud_llm_smoke.py -q",
"test:e2e:llm:superproject": "E2E_SUPERPROJECT_LLM=1 BV_COMPACT_SPEC_GEN=1 LLM_SPEC_GEN_TURN_TIMEOUT_S=1800 LLM_SPEC_GEN_TIMEOUT_S=1800 E2E_LLM=1 E2E_PYTHON=.venv/bin/python3 playwright test -c playwright.llm.config.ts superproject-llm.spec.ts",
"dogfood:agent": "sh scripts/dogfood-agent.sh",
"dogfood:gate": "sh scripts/dogfood-gate.sh",
"test:full": "yarn tsc --noEmit && yarn test && yarn test:rust && yarn test:e2e",
"test:all": "yarn test:full",
"test:local:sh": "sh scripts/test-local.sh",
"test:git-workspace": "PYTHONSAFEPATH=1 .venv/bin/python3 -m pytest tests/core/test_git_workspace.py tests/core/test_http_api.py -q",
"test:bright-core": "PYTHONSAFEPATH=1 .venv/bin/python3 -m pytest tests/core/test_git_workspace.py tests/core/test_workspace_paths.py tests/core/test_workspace_todos.py tests/core/test_agent_todos.py tests/core/test_http_api.py tests/core/test_http_interrupt.py tests/core/test_http_session_todos.py tests/core/test_http_session_persistence.py tests/core/test_http_agent_todo_import.py tests/core/test_http_ears_lint.py tests/core/test_ears_lint.py tests/core/test_generate_spec_parse.py tests/core/test_http_generate_spec_mock.py tests/core/test_superproject_integration.py tests/core/test_superproject_dogfood.py tests/core/test_headless_args.py tests/core/test_headless_persistence.py tests/core/test_headless_agent.py tests/core/test_session_crypto.py tests/core/test_session_transcript.py tests/core/test_sessions.py tests/core/test_llm_ollama.py tests/core/test_roadmap_hints.py tests/core/test_cecli_tool_json.py -q",
"bench:leaderboard": "node scripts/build-bench-leaderboard.mjs",
"verify:submodule": "sh scripts/verify_submodule.sh",
"verify:ears": "sh scripts/verify-ears.sh",
"install-git-hooks": "sh scripts/install-git-hooks.sh",
"install:bgpucap": "sh scripts/install-bgpucap.sh",
"test:everything": "PYTHONSAFEPATH=1 .venv/bin/python3 -m bright_vision_core.test_suite.cli",
"test:everything:logged": "bash scripts/test-everything.sh --logged",
"test:everything:shell": "bash scripts/test-everything.sh",
"lab": "bash scripts/lab.sh",
"test-lab:dev": "yarn workspace @brightvision/test-lab tauri:dev",
"test-lab:icon": "yarn workspace @brightvision/test-lab tauri icon",
"test-lab:digest": "sh scripts/test-lab-digest.sh",
"test-lab:install": "yarn install",
"test-suite:serve": "PYTHONSAFEPATH=1 .venv/bin/bright-vision-test-suite-serve",
"dogfood:check": "sh scripts/dogfood-check.sh",
"dogfood:setup": "sh scripts/setup-m4-dogfood.sh",
"sync:core": "bash cecli/scripts/sync_bright_vision.sh"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@brightvision/vision-client": "workspace:*",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.3",
"@codemirror/legacy-modes": "^6.5.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@lezer/highlight": "^1.2.1",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@uiw/codemirror-theme-vscode": "^4.25.10",
"@uiw/react-codemirror": "^4.25.10",
"mermaid": "^11.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.21",
"react-resizable-panels": "^4.11.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/cli": "^2.0.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"sass": "^1.83.0",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.1.0"
},
"packageManager": "yarn@4.15.0"
}