-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.32 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
{
"name": "xtender",
"version": "0.1.0",
"private": true,
"description": "Preparación inteligente de expedientes de contratación pública. Parte de xProcureAI: IA trazable, documentos coherentes y control humano.",
"workspaces": [
"apps/web"
],
"scripts": {
"dev": "npm run dev:web",
"dev:web": "npm --workspace apps/web run dev",
"build": "npm --workspace apps/web run build",
"lint": "npm --workspace apps/web run lint",
"typecheck": "npm --workspace apps/web run typecheck",
"test": "npm run typecheck && npm run test:api",
"test:api": "EMBEDDING_BACKEND=deterministic PYTHONPATH=apps/api:apps/embedding_api python3 -m pytest apps/api/tests apps/embedding_api/tests",
"api": "PYTHONPATH=apps/api uvicorn procureai_api.main:app --reload --port 8000",
"embeddings": "PYTHONPATH=apps/embedding_api uvicorn embedding_api.main:app --reload --port 8010",
"sources:sync": "PYTHONPATH=apps/api python3 scripts/sync_official_sources.py"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0",
"python": ">=3.10"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/techfriendly/xTender.git"
},
"homepage": "https://github.com/techfriendly/xTender#readme",
"bugs": {
"url": "https://github.com/techfriendly/xTender/issues"
}
}