mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-05-31 13:56:13 -07:00
- @actions/cache ^4.0.0 → ^4.1.0 - @actions/github ^6.0.0 → ^6.0.1 - commander ^9.0.0 → ^9.5.0 - nanoid ^3.3.1 → ^3.3.12 - reflect-metadata ^0.1.13 → ^0.2.2 - semver ^7.5.2 → ^7.7.4 - yaml ^2.2.2 → ^2.8.4 All minor/patch bumps. Major bumps (@actions/core 3.x, nanoid 5.x ESM) deferred to a separate PR. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
77 lines
2.1 KiB
JSON
77 lines
2.1 KiB
JSON
{
|
|
"name": "unity-builder",
|
|
"version": "3.0.0",
|
|
"description": "Build Unity projects for different platforms.",
|
|
"main": "dist/index.js",
|
|
"repository": "git@github.com:game-ci/unity-builder.git",
|
|
"author": "Webber <webber@takken.io>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"build": "yarn && tsc && ncc build lib --source-map --license licenses.txt",
|
|
"test": "node scripts/ensure-husky.mjs && vitest run",
|
|
"test:watch": "vitest",
|
|
"test:ci": "vitest run",
|
|
"coverage": "vitest run --coverage",
|
|
"lint": "yarn oxlint --report-unused-disable-directives",
|
|
"format": "oxfmt --write",
|
|
"format:check": "oxfmt --check",
|
|
"typecheck": "tsc --noEmit",
|
|
"typecheck:tsgo": "tsgo --noEmit",
|
|
"setup:hooks": "node scripts/ensure-husky.mjs"
|
|
},
|
|
"lint-staged": {
|
|
"*.@(ts|tsx|mts|js|jsx|mjs|cjs)": [
|
|
"oxlint --fix --quiet",
|
|
"oxfmt --write"
|
|
],
|
|
"*.@(json|jsonc|json5|md|mdx|yaml|yml|css|scss|sass|html|toml)": "oxfmt --write",
|
|
".github/workflows/*.@(yml|yaml)": "actionlint"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.x"
|
|
},
|
|
"dependencies": {
|
|
"@actions/cache": "^4.1.0",
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.1",
|
|
"commander": "^9.5.0",
|
|
"commander-ts": "^0.2.0",
|
|
"md5": "^2.3.0",
|
|
"nanoid": "^3.3.12",
|
|
"reflect-metadata": "^0.2.2",
|
|
"semver": "^7.7.4",
|
|
"ts-md5": "^1.3.1",
|
|
"unity-changeset": "^3.1.0",
|
|
"yaml": "^2.8.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^17.0.23",
|
|
"@types/semver": "^7.3.9",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260505.1",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"@vitest/coverage-istanbul": "^4.1.5",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^10.3.0",
|
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
"husky": "9",
|
|
"js-yaml": "^4.1.0",
|
|
"lint-staged": "^16.4.0",
|
|
"node-fetch": "2",
|
|
"oxfmt": "^0.48.0",
|
|
"oxlint": "^1.63.0",
|
|
"ts-node": "10.8.1",
|
|
"typescript": "4.7.4",
|
|
"vite": "^7",
|
|
"vitest": "^4",
|
|
"yarn-audit-fix": "^9.3.8"
|
|
},
|
|
"packageManager": "yarn@4.14.1",
|
|
"dependenciesMeta": {
|
|
"lefthook": {
|
|
"built": true
|
|
}
|
|
}
|
|
}
|