-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1 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
{
"name": "outlyne",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run dev:api & bun run dev:web",
"dev:api": "HF_HOME=.cache/huggingface TRANSFORMERS_VERBOSITY=error HF_HUB_DISABLE_SYMLINKS_WARNING=1 PYTHONPATH=src uv run uvicorn main:app --reload",
"dev:web": "cd web && bun run dev",
"lint": "HF_HOME=.cache/huggingface TRANSFORMERS_VERBOSITY=error uv run ruff check . && uv run mypy . && bun run lint:web",
"lint:web": "cd web && bun run lint && bunx tsc --noEmit",
"fix:web": "cd web && bun run lint:fix",
"format": "uv run ruff format .",
"test": "uv run pytest",
"sync": "mkdir -p .cache/huggingface && uv sync",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"lock": "uv lock",
"clean": "rm -rf .venv node_modules .next out build dist .pytest_cache .ruff_cache .mypy_cache .cache"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}