mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-06-05 14:48:01 +02:00
2963dbc0f9
Bumps the nodecar-dependencies group in /nodecar with 4 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@yao-pkg/pkg](https://github.com/yao-pkg/pkg), [commander](https://github.com/tj/commander.js) and [proxy-chain](https://github.com/apify/proxy-chain). Updates `@types/node` from 22.15.17 to 22.15.29 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@yao-pkg/pkg` from 6.4.1 to 6.5.1 - [Release notes](https://github.com/yao-pkg/pkg/releases) - [Changelog](https://github.com/yao-pkg/pkg/blob/main/CHANGELOG.md) - [Commits](https://github.com/yao-pkg/pkg/compare/v6.4.1...v6.5.1) Updates `commander` from 13.1.0 to 14.0.0 - [Release notes](https://github.com/tj/commander.js/releases) - [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/tj/commander.js/compare/v13.1.0...v14.0.0) Updates `proxy-chain` from 2.5.8 to 2.5.9 - [Release notes](https://github.com/apify/proxy-chain/releases) - [Changelog](https://github.com/apify/proxy-chain/blob/master/CHANGELOG.md) - [Commits](https://github.com/apify/proxy-chain/compare/v2.5.8...v2.5.9) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 22.15.29 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nodecar-dependencies - dependency-name: "@yao-pkg/pkg" dependency-version: 6.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nodecar-dependencies - dependency-name: commander dependency-version: 14.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: nodecar-dependencies - dependency-name: proxy-chain dependency-version: 2.5.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nodecar-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
1.3 KiB
JSON
34 lines
1.3 KiB
JSON
{
|
|
"name": "nodecar",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"watch": "nodemon --exec ts-node --esm ./src/index.ts --watch src",
|
|
"dev": "node --loader ts-node/esm ./src/index.ts",
|
|
"start": "node --loader ts-node/esm ./src/index.ts",
|
|
"build": "tsc && pkg ./dist/index.js --targets latest-macos-arm64 --output dist/nodecar",
|
|
"build:aarch64": "tsc && pkg ./dist/index.js --targets latest-macos-arm64 --output dist/nodecar",
|
|
"build:x86_64": "tsc && pkg ./dist/index.js --targets latest-macos-x64 --output dist/nodecar",
|
|
"build:linux-x64": "tsc && pkg ./dist/index.js --targets latest-linux-x64 --output dist/nodecar",
|
|
"build:linux-arm64": "tsc && pkg ./dist/index.js --targets latest-linux-arm64 --output dist/nodecar",
|
|
"build:win-x64": "tsc && pkg ./dist/index.js --targets latest-win-x64 --output dist/nodecar",
|
|
"build:win-arm64": "tsc && pkg ./dist/index.js --targets latest-win-arm64 --output dist/nodecar"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "AGPL-3.0",
|
|
"packageManager": "pnpm@10.6.1",
|
|
"dependencies": {
|
|
"@types/node": "^22.15.29",
|
|
"@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"
|
|
}
|
|
}
|