-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.17 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.17 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
{
"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",
"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": "ISC",
"devDependencies": {
"@cloudflare/containers": "^0.3.2",
"autoprefixer": "^10.4.14",
"postcss": "^8.5.14",
"tailwindcss": "^3.3.2",
"wrangler": "^4.11.1"
}
}