1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {
- "name": "pacifica-wash-trading-system",
- "version": "1.0.0",
- "description": "Pacifica Multi-Account BTC Wash Trading System - 纯后台运行系统",
- "main": "dist/daemon.js",
- "scripts": {
- "build": "tsc",
- "start": "node dist/daemon.js",
- "dev": "tsx src/daemon.ts",
- "daemon": "tsx src/daemon.ts",
- "trade": "tsx scripts/run-delta-neutral-simple.ts",
- "trade:delta": "tsx scripts/run-delta-neutral-simple.ts",
- "trade:auto": "./scripts/auto-restart.sh",
- "trade:pm2": "pm2 start ecosystem.config.js",
- "trade:pm2:stop": "pm2 stop ecosystem.config.js",
- "trade:pm2:logs": "pm2 logs delta-neutral-trading",
- "trade:pm2:monitor": "pm2 monit",
- "positions": "tsx scripts/check-positions.ts",
- "reduce": "tsx scripts/reduce-positions.ts",
- "health": "node scripts/health-check.js",
- "cleanup-orders": "tsx scripts/cleanup-orders.ts",
- "cleanup-orders:dry": "tsx scripts/cleanup-orders.ts --dry",
- "test": "jest",
- "test:watch": "jest --watch",
- "test:basic": "tsx scripts/test-basic.ts",
- "test:advanced": "tsx scripts/test-advanced.ts",
- "lint": "eslint src/**/*.ts",
- "lint:fix": "eslint src/**/*.ts --fix",
- "format": "prettier --write src/**/*.ts",
- "clean": "rm -rf dist logs/*.log",
- "setup": "npm install && npm run build",
- "status": "ps aux | grep 'tsx src/daemon.ts' | grep -v grep",
- "stop": "pkill -f 'tsx src/daemon.ts'",
- "restart": "npm run stop && npm run start"
- },
- "keywords": [
- "pacifica",
- "wash-trading",
- "btc",
- "trading",
- "backend",
- "daemon",
- "automation"
- ],
- "author": "Pacifica Trading System",
- "license": "MIT",
- "dependencies": {
- "@solana/web3.js": "^1.98.4",
- "axios": "^1.6.0",
- "bs58": "^6.0.0",
- "crypto-js": "^4.2.0",
- "dotenv": "^16.3.1",
- "joi": "^17.11.0",
- "node-cron": "^3.0.3",
- "tweetnacl": "^1.0.3",
- "tweetnacl-util": "^0.15.1",
- "uuid": "^9.0.1",
- "winston": "^3.18.0",
- "ws": "^8.14.2"
- },
- "devDependencies": {
- "@types/crypto-js": "^4.2.1",
- "@types/jest": "^29.5.8",
- "@types/node": "^20.9.0",
- "@types/uuid": "^9.0.8",
- "@types/ws": "^8.5.8",
- "@typescript-eslint/eslint-plugin": "^6.12.0",
- "@typescript-eslint/parser": "^6.12.0",
- "eslint": "^8.54.0",
- "eslint-config-prettier": "^9.0.0",
- "eslint-plugin-prettier": "^5.0.1",
- "jest": "^29.7.0",
- "prettier": "^3.1.0",
- "ts-jest": "^29.1.1",
- "tsx": "^4.1.4",
- "typescript": "^5.2.2"
- },
- "engines": {
- "node": ">=18.0.0"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/your-org/pacifica-wash-trading-system.git"
- },
- "bugs": {
- "url": "https://github.com/your-org/pacifica-wash-trading-system/issues"
- },
- "homepage": "https://github.com/your-org/pacifica-wash-trading-system#readme"
- }
|