Archon/package.json
Wirasm 7a1cc7211a
Fix npm deprecation warnings and vulnerability (#29)
* Fix npm deprecation warnings and vulnerability

- Update Jest 29→30.2.0 to eliminate glob@7/inflight deprecation warnings
- Update Express 5.1.0→5.2.1 to fix query property vulnerability
- Update ts-jest 29.1.0→29.4.6 for Jest 30 compatibility
- Update @types/jest 29.5.0→30.0.0 for Jest 30 types
- Add npm override for test-exclude@7 to fully eliminate glob@7

* Update SDK and tooling dependencies to latest
2025-12-03 10:43:24 +02:00

64 lines
1.6 KiB
JSON

{
"name": "remote-coding-agent",
"version": "1.0.0",
"description": "Remote agentic coding platform - Control AI coding assistants from Telegram, Slack, and GitHub",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"setup-auth": "node dist/scripts/setup-auth.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci --maxWorkers=2",
"type-check": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"ai",
"coding-assistant",
"telegram",
"slack",
"github",
"claude",
"codex"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.57",
"@octokit/rest": "^22.0.0",
"@openai/codex-sdk": "^0.64.0",
"discord.js": "^14.16.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"pg": "^8.11.0",
"telegraf": "^4.16.0",
"telegramify-markdown": "^1.3.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "10.1.8",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.48.0"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"test-exclude": "^7.0.1"
}
}