-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.96 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
{
"name": "MultiLLM-Proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tailwindcss -i ./static/css/main.css -o ./static/css/style.css",
"watch": "tailwindcss -i ./static/css/main.css -o ./static/css/style.css --watch",
"lint": "ruff check . --select E9,F63,F7,F82",
"typecheck": "mypy --ignore-missing-imports --follow-imports=skip --disable-error-code import-untyped --disable-error-code var-annotated --disable-error-code arg-type --disable-error-code assignment --disable-error-code operator app.py routes services providers streaming",
"test": "python -m pytest -q",
"test:worker": "node --test tests/test_cloudflare_worker.mjs tests/test_dashboard_scripts.mjs tests/test_opencode_reasoning_worker.mjs tests/test_roleplay_worker.mjs tests/test_roleplay_config_worker.mjs tests/test_roleplay_glm_failover_worker.mjs tests/test_roleplay_memory_worker.mjs tests/test_roleplay_compatibility_worker.mjs tests/test_roleplay_history_reconciliation_worker.mjs tests/test_roleplay_output_contract_analysis.mjs tests/test_roleplay_output_contract_cleanup_worker.mjs tests/test_roleplay_output_contract_nonstream_worker.mjs tests/test_roleplay_output_contract_worker.mjs tests/test_roleplay_performance_worker.mjs tests/test_roleplay_reasoning_worker.mjs tests/test_roleplay_session_storage_worker.mjs tests/test_roleplay_unlimited_worker.mjs",
"db:migrate": "python scripts/validate_sqlite_schema.py --apply",
"db:validate": "python scripts/validate_sqlite_schema.py",
"security:secrets": "python scripts/check_static_secrets.py",
"cf:deploy": "wrangler deploy",
"cf:dry-run": "wrangler deploy --dry-run",
"cf:tail": "wrangler tail"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@cloudflare/containers": "^0.3.2",
"autoprefixer": "^10.4.14",
"postcss": "^8.5.25",
"tailwindcss": "^3.3.2",
"wrangler": "^4.11.1"
},
"overrides": {
"sharp": "0.35.3"
}
}