mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-21 16:00:59 -05:00
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"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.21.5",
|
|
"@types/jest": "^29.5.1",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/node": "^16.18.31",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"@types/semver": "^7.3.13",
|
|
"@types/yazl": "^2.4.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
"@typescript-eslint/parser": "^5.33.1",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"babel-jest": "^29.5.0",
|
|
"eslint": "^8.22.0",
|
|
"jest": "^29.5.0",
|
|
"mock-fs": "^5.2.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.4",
|
|
"yazl": "^2.5.1"
|
|
},
|
|
"dependencies": {
|
|
"fast-glob": "^3.2.11",
|
|
"node-fetch": "^3.3.1",
|
|
"node-stream-zip": "^1.15.0",
|
|
"semver": "^7.5.0",
|
|
"toml": "^3.0.0",
|
|
"yaml": "^2.2.2"
|
|
}
|
|
}
|