{ "name": "setup-godot", "version": "0.0.0", "private": true, "description": "Setup Godot for headless use with macOS, Windows, and Linux runners.", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", "lint": "eslint src/**/*.ts", "package": "ncc build --source-map --license licenses.txt", "package-local": "export NODE_OPTIONS=--openssl-legacy-provider; ncc build --source-map --license licenses.txt", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run package && npm test", "all-local": "npm run build && npm run format && npm run lint && npm run package-local && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/chickensoft-games/setup-godot.git" }, "keywords": [ "actions", "node", "setup" ], "author": "", "license": "MIT", "dependencies": { "@actions/cache": "^3.1.2", "@actions/core": "^1.10.0", "@actions/tool-cache": "^2.0.1" }, "devDependencies": { "@types/node": "^18.11.18", "@typescript-eslint/parser": "^5.49.0", "@vercel/ncc": "^0.36.1", "eslint": "^8.33.0", "eslint-plugin-github": "^4.6.0", "eslint-plugin-jest": "^27.2.1", "jest": "^29.4.1", "js-yaml": "^4.1.0", "prettier": "^2.8.3", "ts-jest": "^29.0.5", "typescript": "^4.9.4" } }