{ "name": "nodecar", "version": "1.0.0", "description": "", "main": "dist/index.js", "scripts": { "watch": "nodemon --exec ts-node --esm ./src/index.ts --watch src", "dev": "node --loader ts-node/esm ./src/index.ts", "start": "tsc && node ./dist/index.js", "test": "tsc && node ./dist/test-proxy.js", "rename-binary": "sh ./copy-binary.sh", "build": "tsc && pkg ./dist/index.js --targets latest-macos-arm64 --output dist/nodecar && pnpm rename-binary", "build:mac-aarch64": "tsc && pkg ./dist/index.js --targets latest-macos-arm64 --output dist/nodecar && pnpm rename-binary", "build:mac-x86_64": "tsc && pkg ./dist/index.js --targets latest-macos-x64 --output dist/nodecar && pnpm rename-binary", "build:linux-x64": "tsc && pkg ./dist/index.js --targets latest-linux-x64 --output dist/nodecar && pnpm rename-binary", "build:linux-arm64": "tsc && pkg ./dist/index.js --targets latest-linux-arm64 --output dist/nodecar && pnpm rename-binary", "build:win-x64": "tsc && pkg ./dist/index.js --targets latest-win-x64 --output dist/nodecar && pnpm rename-binary", "build:win-arm64": "tsc && pkg ./dist/index.js --targets latest-win-arm64 --output dist/nodecar && pnpm rename-binary" }, "keywords": [], "author": "", "license": "AGPL-3.0", "dependencies": { "@types/node": "^24.0.1", "@yao-pkg/pkg": "^6.5.1", "commander": "^14.0.0", "dotenv": "^16.5.0", "get-port": "^7.1.0", "nodemon": "^3.1.10", "proxy-chain": "^2.5.9", "ts-node": "^10.9.2", "typescript": "^5.8.3", "typescript-eslint": "^8.34.0" } }