mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-23 12:26:17 +02:00
390f79f97b
Bumps the frontend-dependencies group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [lint-staged](https://github.com/lint-staged/lint-staged) and [undici-types](https://github.com/nodejs/undici). Updates `@types/node` from 22.15.31 to 24.0.1 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `lint-staged` from 16.1.0 to 16.1.1 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v16.1.0...v16.1.1) Updates `undici-types` from 6.21.0 to 7.8.0 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v6.21.0...v7.8.0) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 24.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: frontend-dependencies - dependency-name: lint-staged dependency-version: 16.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-dependencies - dependency-name: undici-types dependency-version: 7.8.0 dependency-type: indirect update-type: version-update:semver-major dependency-group: frontend-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
1.6 KiB
JSON
36 lines
1.6 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|