From d7ffd66cb06795a62c04fa91acffe5e3a11c4450 Mon Sep 17 00:00:00 2001 From: joseguzman1337 Date: Tue, 31 Mar 2026 07:40:05 -0500 Subject: [PATCH] [CRUSH] chore(repo): checkpoint pending changes #TASK-000 --- project.json | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 project.json diff --git a/project.json b/project.json new file mode 100644 index 0000000..040538a --- /dev/null +++ b/project.json @@ -0,0 +1,93 @@ +{ + "name": "repo-repos-sublist3r", + "root": "repos/Sublist3r", + "projectType": "library", + "targets": { + "status": { + "executor": "nx:run-commands", + "options": { + "command": "git -C repos/Sublist3r status --short || true" + }, + "metadata": { + "supervisorRequired": true + } + }, + "fetch": { + "executor": "nx:run-commands", + "options": { + "command": "git -C repos/Sublist3r fetch --all --prune || true" + }, + "metadata": { + "supervisorRequired": true + } + }, + "log": { + "executor": "nx:run-commands", + "options": { + "command": "git -C repos/Sublist3r log --oneline -10 || true" + }, + "metadata": { + "supervisorRequired": true + } + }, + "manifests": { + "executor": "nx:run-commands", + "options": { + "command": "find repos/Sublist3r \\( -name package.json -o -name pyproject.toml -o -name Cargo.toml -o -name go.mod -o -name setup.py \\) -not -path '*/node_modules/*' -not -path '*/testdata/*' -not -path '*/fixtures/*' -print | sort" + }, + "metadata": { + "supervisorRequired": true + } + }, + "python-test": { + "executor": "nx:run-commands", + "options": { + "command": "sh -lc 'cd repos/Sublist3r && pytest -q || python -m pytest -q || true'" + }, + "metadata": { + "supervisorRequired": true + } + }, + "python-lint": { + "executor": "nx:run-commands", + "options": { + "command": "sh -lc 'cd repos/Sublist3r && ruff check . || flake8 . || true'" + }, + "metadata": { + "supervisorRequired": true + } + }, + "python-build": { + "executor": "nx:run-commands", + "options": { + "command": "sh -lc 'cd repos/Sublist3r && python -m build || true'" + }, + "metadata": { + "supervisorRequired": true + } + }, + "security-python": { + "executor": "nx:run-commands", + "options": { + "command": "sh -lc 'cd repos/Sublist3r && pip-audit || true'" + }, + "metadata": { + "supervisorRequired": true + } + }, + "security": { + "executor": "nx:run-commands", + "options": { + "command": "sh -lc 'printf \"security targets: security-python\\n\"'" + }, + "metadata": { + "supervisorRequired": true + } + } + }, + "tags": [ + "scope:repos", + "type:subrepo", + "lang:python" + ] +} \ No newline at end of file