{ "name": "mc-publish", "version": "3.3.0", "description": "GitHub Action that helps you publish your Minecraft mods", "main": "src/index.ts", "type": "module", "scripts": { "clean": "rimraf dist", "generate": "ncc run scripts/generate.ts -t", "strip": "ncc run scripts/strip.ts -t", "prebuild": "npm run clean && npm run generate", "build": "ncc build -m -s --license license.txt", "postbuild": "npm run strip", "test:lint": "eslint \"@(src|scripts)/**/*.ts\" && eslint --rule \"no-invalid-this: off\" tests/**/*.ts", "test:unit": "jest --testPathPattern=unit --watchAll=false", "test:integration": "jest --testPathPattern=integration --watchAll=false --passWithNoTests", "test": "npm run test:lint && npm run test:unit && npm run test:integration" }, "repository": { "type": "git", "url": "git+https://github.com/Kir-Antipov/mc-publish.git" }, "keywords": [ "github", "actions", "minecraft", "minecraft-mod", "publish" ], "author": "Kir-Antipov", "license": "MIT", "bugs": { "url": "https://github.com/Kir-Antipov/mc-publish/issues" }, "homepage": "https://github.com/Kir-Antipov/mc-publish#readme", "devDependencies": { "@babel/preset-env": "^7.23.8", "@types/jest": "^29.5.11", "@types/mock-fs": "^4.13.4", "@types/node": "^16.18.31", "@types/node-fetch": "^2.6.10", "@types/semver": "^7.5.6", "@types/yazl": "^2.4.5", "@typescript-eslint/eslint-plugin": "^6.18.1", "@typescript-eslint/parser": "^6.18.1", "@vercel/ncc": "^0.38.1", "babel-jest": "^29.7.0", "eslint": "^8.56.0", "jest": "^29.7.0", "mock-fs": "^5.2.0", "ts-jest": "^29.1.1", "typescript": "^5.3.3", "yazl": "^2.5.1" }, "dependencies": { "fast-glob": "^3.3.2", "node-fetch": "^3.3.2", "node-stream-zip": "^1.15.0", "semver": "^7.5.4", "toml": "^3.0.0", "yaml": "^2.3.4" } }