-
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.13 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.13 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": "xfollow",
"version": "0.1.0",
"private": true,
"description": "Seguimiento inteligente de contratos públicos: obligaciones, alertas, evidencias y ejecución trazable. El módulo de control de xProcureAI.",
"workspaces": [
"apps/web"
],
"scripts": {
"dev": "npm run dev:web",
"dev:web": "npm --workspace apps/web run dev",
"build": "npm --workspace apps/web run build",
"typecheck": "npm --workspace apps/web run typecheck",
"test": "npm run typecheck && npm run test:api",
"test:api": "XFOLLOW_FORCE_MEMORY=1 PYTHONPATH=apps/api python3 -m pytest apps/api/tests -q",
"api": "PYTHONPATH=apps/api uvicorn xfollow_api.main:app --reload --port ${XFOLLOW_API_PORT:-8100}",
"worker": "PYTHONPATH=apps/api python3 -m xfollow_api.worker"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0",
"python": ">=3.10"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/techfriendly/xFollow.git"
},
"homepage": "https://github.com/techfriendly/xFollow#readme",
"bugs": {
"url": "https://github.com/techfriendly/xFollow/issues"
}
}