{ "name": "@packages/network-tools", "version": "0.0.0-development", "private": true, "main": "cjs/index.js", "scripts": { "build": "yarn build:esm && yarn build:cjs", "build-prod": "yarn build", "build:cjs": "rimraf cjs && tsc -p tsconfig.cjs.json", "build:esm": "rimraf esm && tsc -p tsconfig.esm.json", "check-ts": "tsc -p tsconfig.cjs.json --noEmit && yarn -s tslint -p tsconfig.cjs.json", "clean": "rimraf cjs esm", "clean-deps": "rimraf node_modules", "lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .", "test": "yarn test-unit", "test-debug": "npx vitest --inspect-brk --no-file-parallelism --test-timeout=0 --hook-timeout=0", "test-unit": "vitest run", "test-watch": "yarn test-unit --watch", "tslint": "tslint --config ../ts/tslint.json --project .", "watch": "tsc -p tsconfig.cjs.json --watch" }, "dependencies": { "@cypress/parse-domain": "2.4.0", "debug": "^4.3.4", "lodash": "^4.17.21" }, "devDependencies": { "rimraf": "6.1.1", "typescript": "~5.4.5", "vitest": "^3.2.4" }, "files": [ "cjs", "esm" ], "types": "./cjs/index.d.ts", "license": "MIT", "module": "esm/index.js", "nx": {} }