mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-30 18:56:16 +00:00
15 lines
717 B
JSON
15 lines
717 B
JSON
{
|
|
"name": "research-stack",
|
|
"private": true,
|
|
"description": "Local Research Stack tooling dependencies.",
|
|
"scripts": {
|
|
"install-python": "uv python install 3.11.15",
|
|
"setup-cad-env": "cd 5-Applications/text-to-cad && python3.11 -m venv .venv && ./.venv/bin/pip install -r requirements-cad.txt",
|
|
"verify-cad": "cd 5-Applications/text-to-cad && ./.venv/bin/python -c \"import build123d; import OCP; print('CAD dependencies OK')\"",
|
|
"setup-science-light": "uv venv .venv-science && . .venv-science/bin/activate && uv pip install -r requirements-optional-science.txt",
|
|
"probe-science": "python3 scripts/probe_science_toolbelt.py"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^12.4.1"
|
|
}
|
|
}
|