Files
heretek-openclaw/package.json
T

99 lines
3.1 KiB
JSON

{
"name": "heretek-openclaw",
"version": "2.0.0",
"description": "Heretek OpenClaw - Self-improving autonomous agent collective with LiteLLM A2A protocol",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"test:unit": "vitest run tests/unit/",
"test:integration": "vitest run tests/integration/",
"test:e2e": "vitest run tests/e2e/",
"test:skills": "vitest run tests/skills/",
"test:coverage": "vitest run --coverage",
"test:coverage:html": "vitest run --coverage --reporter=html",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"clean": "rm -rf dist/ build/ .svelte-kit/ coverage/ test-results/",
"clean:modules": "rm -rf node_modules/ plugins/*/node_modules/",
"build": "npm run typecheck && npm run lint && npm run format:check",
"build:ci": "npm run typecheck && npm run lint",
"prepare": "husky install",
"precommit": "lint-staged",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:restart": "docker compose restart",
"health:check": "./scripts/health-check.sh",
"health:litellm": "python3 ./scripts/litellm-healthcheck.py",
"backup": "./scripts/production-backup.sh",
"validate:cycles": "./scripts/validate-cycles.sh",
"ci:all": "npm run build:ci && npm run test:coverage && npm run docker:build",
"ci:test": "npm run typecheck && npm run lint && npm run test",
"ci:security": "npm audit --audit-level=moderate",
"ci:docs": "markdownlint '**/*.md' --ignore node_modules",
"test:e2e:playwright": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"keywords": [
"ai",
"agents",
"llm",
"litellm",
"a2a",
"autonomous",
"collective",
"heretek",
"openclaw"
],
"author": "Heretek",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/heretek/heretek-openclaw.git"
},
"bugs": {
"url": "https://github.com/heretek/heretek-openclaw/issues"
},
"homepage": "https://github.com/heretek/heretek-openclaw#readme",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.42.0",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^1.3.0",
"@vitest/ui": "^1.3.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vitest": "^1.3.0"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"volta": {
"node": "20.11.0",
"npm": "10.2.4"
}
}