unity-builder/package.json

83 lines
2.7 KiB
JSON
Raw Normal View History

2019-12-16 23:52:44 +00:00
{
"name": "unity-builder",
"version": "2.0.0",
2019-12-16 23:52:44 +00:00
"description": "Build Unity projects for different platforms.",
"main": "dist/index.js",
"repository": "git@github.com:game-ci/unity-builder.git",
2019-12-16 23:52:44 +00:00
"author": "Webber <webber@takken.io>",
"license": "MIT",
"scripts": {
2020-03-09 22:37:39 +00:00
"prebuild": "yarn",
"build": "tsc && ncc build lib --source-map --license licenses.txt",
"lint": "prettier --check \"src/**/*.{js,ts}\" && eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.{js,ts}\"",
2022-02-01 02:31:20 +00:00
"prepare": "husky install",
"cli": "yarn ts-node src/index.ts -m cli",
"cli-aws": "cross-env cloudRunnerCluster=aws yarn run test-cli",
"cli-k8s": "cross-env cloudRunnerCluster=k8s yarn run test-cli",
"test-cli": "cross-env cloudRunnerTests=true yarn ts-node src/index.ts -m cli --projectPath test-project",
"test": "jest",
2022-02-01 02:31:20 +00:00
"test-i": "yarn run test-i-aws && yarn run test-i-k8s",
"test-i-f": "yarn run test-i-aws && yarn run test-i-k8s && yarn run cli-k8s && yarn run cli-aws",
"test-i-aws": "cross-env cloudRunnerTests=true cloudRunnerCluster=aws yarn test -i -t \"cloud runner\"",
"test-i-k8s": "cross-env cloudRunnerTests=true cloudRunnerCluster=k8s yarn test -i -t \"cloud runner\""
2019-12-16 23:52:44 +00:00
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^2.2.0",
2022-02-01 02:31:20 +00:00
"@kubernetes/client-node": "^0.14.3",
"@octokit/core": "^3.5.1",
2022-02-01 02:31:20 +00:00
"async-wait-until": "^2.0.7",
"aws-sdk": "^2.812.0",
"base-64": "^1.0.0",
2022-02-01 02:31:20 +00:00
"commander": "^8.3.0",
"commander-ts": "^0.2.0",
"kubernetes-client": "^9.0.0",
Initial Support for MacOS IL2CPP Builds (#326) * Add intial framework for macos builds. Test install editor * Fix unity hub path space * Single quote space in path * Escape space character * More backslashes * Move to bash scripts for setup * Add path to command args * Different command to run shell script * Use full path to scripts * Unpack changeset value and fix missing escape characters * Print changeset * More debug * Remove debug * Fix script paths * Printenv debug * Write environment variables to file to read in bash script * Debug file write * More debug * Fix missing await * Move back to process.env * Fix path typo * Add missing flags * Make directory for license activation * Add missing sudo * Give permissions to license folder * Fix path issues * Add build tests * Try ts setup again * Try quoting path * Further migrate mac scripts to align with linux scripts * print pwd * Fix changeset and remove unneeded env vars * Ignore return code * fix missing current directory * Fix project path * pwd * Remove project path * Revert to cwd being the workspace folder and pass action folder as an env variable. * Add blank project to use for activation * Add blank project path * Fix build tests * Don't rebuild library on windows * Fix project path windows * Fix platform specific workspace env variable * Fix incorrect variable name * Update .github/workflows/mac-build-tests.yml Co-authored-by: Webber Takken <webber.nl@gmail.com> * Update .github/workflows/mac-build-tests.yml Co-authored-by: Webber Takken <webber.nl@gmail.com> * Update dist/BlankProject/Packages/packages-lock.json Co-authored-by: Webber Takken <webber.nl@gmail.com> * Update src/model/platform-setup/setup-mac.ts Co-authored-by: Webber Takken <webber.nl@gmail.com> * Update src/model/platform-setup/setup-mac.ts Co-authored-by: Webber Takken <webber.nl@gmail.com> * Fix formatting Co-authored-by: Webber Takken <webber.nl@gmail.com>
2022-02-02 09:15:37 +00:00
"unity-changeset": "^1.6.0",
2022-02-01 02:31:20 +00:00
"reflect-metadata": "^0.1.13",
"semver": "^7.3.5",
"yaml": "^1.10.2",
"nanoid": "^3.1.31"
2019-12-16 23:52:44 +00:00
},
"devDependencies": {
2022-02-01 02:31:20 +00:00
"@types/jest": "^27.0.3",
"@types/node": "^14.14.9",
"@types/semver": "^7.3.5",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.25.1",
2022-02-01 02:31:20 +00:00
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-unicorn": "^28.0.2",
"husky": "^7.0.4",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"lint-staged": "^12.1.2",
"prettier": "^2.2.1",
2022-02-01 02:31:20 +00:00
"ts-jest": "^26.4.2",
"ts-node": "^10.4.0",
"typescript": "^4.1.3"
2019-12-16 23:52:44 +00:00
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
2019-12-16 23:52:44 +00:00
"prettier --write",
"eslint",
2019-12-17 00:01:41 +00:00
"git add",
"jest --findRelatedTests"
2019-12-16 23:52:44 +00:00
],
2019-12-17 21:48:54 +00:00
"*.{json,md,yaml,yml}": [
2019-12-16 23:52:44 +00:00
"prettier --write",
"git add"
],
"*.sh": [
"git update-index --chmod=+x"
],
"*.js": "eslint --cache --fix"
2019-12-16 23:52:44 +00:00
}
}