Files
donutbrowser/nodecar/package.json
T
dependabot[bot] 7a4c02d063 deps(deps): bump the frontend-dependencies group with 5 updates (#169)
Bumps the frontend-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [fingerprint-generator](https://github.com/apify/fingerprint-suite) | `2.1.78` | `2.1.79` |
| [electron-to-chromium](https://github.com/kilian/electron-to-chromium) | `1.5.263` | `1.5.267` |
| [generative-bayesian-network](https://github.com/apify/fingerprint-suite) | `2.1.78` | `2.1.79` |
| [header-generator](https://github.com/apify/fingerprint-suite) | `2.1.78` | `2.1.79` |
| [update-browserslist-db](https://github.com/browserslist/update-db) | `1.2.1` | `1.2.3` |


Updates `fingerprint-generator` from 2.1.78 to 2.1.79
- [Release notes](https://github.com/apify/fingerprint-suite/releases)
- [Commits](https://github.com/apify/fingerprint-suite/compare/v2.1.78...v2.1.79)

Updates `electron-to-chromium` from 1.5.263 to 1.5.267
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/master/CHANGELOG.md)
- [Commits](https://github.com/kilian/electron-to-chromium/compare/v1.5.263...v1.5.267)

Updates `generative-bayesian-network` from 2.1.78 to 2.1.79
- [Release notes](https://github.com/apify/fingerprint-suite/releases)
- [Commits](https://github.com/apify/fingerprint-suite/compare/v2.1.78...v2.1.79)

Updates `header-generator` from 2.1.78 to 2.1.79
- [Release notes](https://github.com/apify/fingerprint-suite/releases)
- [Commits](https://github.com/apify/fingerprint-suite/compare/v2.1.78...v2.1.79)

Updates `update-browserslist-db` from 1.2.1 to 1.2.3
- [Release notes](https://github.com/browserslist/update-db/releases)
- [Changelog](https://github.com/browserslist/update-db/blob/main/CHANGELOG.md)
- [Commits](https://github.com/browserslist/update-db/compare/1.2.1...1.2.3)

---
updated-dependencies:
- dependency-name: fingerprint-generator
  dependency-version: 2.1.79
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: electron-to-chromium
  dependency-version: 1.5.267
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: generative-bayesian-network
  dependency-version: 2.1.79
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: header-generator
  dependency-version: 2.1.79
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
- dependency-name: update-browserslist-db
  dependency-version: 1.2.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: frontend-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-03 09:29:33 +00:00

41 lines
1.5 KiB
JSON

{
"name": "nodecar",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"bin": "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",
"rename-binary": "sh ./copy-binary.sh",
"build": "tsc && banderole bundle . --output nodecar-bin && pnpm rename-binary",
"build:mac-aarch64": "tsc && banderole bundle . --output nodecar-bin && pnpm rename-binary",
"build:mac-x86_64": "tsc && banderole bundle . --output nodecar-bin && pnpm rename-binary",
"build:linux-x64": "tsc && banderole bundle . --output nodecar-bin && pnpm rename-binary",
"build:linux-arm64": "tsc && banderole bundle . --output nodecar-bin && pnpm rename-binary",
"build:win-x64": "tsc && banderole bundle . --output nodecar-bin && pnpm rename-binary",
"build:win-arm64": "tsc && banderole bundle . --output nodecar-bin && pnpm rename-binary"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"dependencies": {
"@types/node": "^25.0.3",
"commander": "^14.0.2",
"donutbrowser-camoufox-js": "^0.7.0",
"dotenv": "^17.2.3",
"fingerprint-generator": "^2.1.79",
"get-port": "^7.1.0",
"nodemon": "^3.1.11",
"playwright-core": "^1.57.0",
"proxy-chain": "^2.7.0",
"tmp": "^0.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/tmp": "^0.2.6"
}
}