2021-09-20 07:01:32 -04:00
|
|
|
{
|
|
|
|
"name": "mc-publish",
|
2022-08-21 08:18:22 -04:00
|
|
|
"version": "3.2.0",
|
2021-09-20 07:01:32 -04:00
|
|
|
"description": "GitHub Action that helps you publish your Minecraft mods",
|
|
|
|
"main": "src/index.ts",
|
2022-12-01 06:11:12 -05:00
|
|
|
"type": "module",
|
2021-09-20 07:01:32 -04:00
|
|
|
"scripts": {
|
2023-05-06 08:35:05 -04:00
|
|
|
"generate": "ncc run scripts/generate.ts -t",
|
|
|
|
"prebuild": "npm run generate",
|
|
|
|
"build": "ncc build -s --license license.txt",
|
2023-05-18 13:33:21 -04:00
|
|
|
"test:lint": "eslint \"@(src|scripts)/**/*.ts\" && eslint --rule \"no-invalid-this: off\" tests/**/*.ts",
|
2022-11-29 08:12:43 -05:00
|
|
|
"test:unit": "jest --testPathPattern=unit --watchAll=false",
|
2023-05-18 13:36:21 -04:00
|
|
|
"test:integration": "jest --testPathPattern=integration --watchAll=false --passWithNoTests",
|
2022-11-29 08:12:43 -05:00
|
|
|
"test": "npm run test:lint && npm run test:unit && npm run test:integration"
|
2021-09-20 07:01:32 -04:00
|
|
|
},
|
|
|
|
"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",
|
2021-09-21 03:22:09 -04:00
|
|
|
"devDependencies": {
|
2022-11-29 08:12:43 -05:00
|
|
|
"@babel/preset-env": "^7.21.5",
|
|
|
|
"@types/jest": "^29.5.1",
|
|
|
|
"@types/mock-fs": "^4.13.1",
|
|
|
|
"@types/node": "^16.11.7",
|
2022-08-21 08:16:05 -04:00
|
|
|
"@types/node-fetch": "^2.6.2",
|
2022-11-27 13:33:41 -05:00
|
|
|
"@types/semver": "^7.3.13",
|
2021-12-07 14:00:58 -05:00
|
|
|
"@types/yazl": "^2.4.2",
|
2022-08-21 08:16:05 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
|
|
"@typescript-eslint/parser": "^5.33.1",
|
2022-05-31 14:17:20 -04:00
|
|
|
"@vercel/ncc": "^0.34.0",
|
2022-11-29 08:12:43 -05:00
|
|
|
"babel-jest": "^29.5.0",
|
2022-08-21 08:16:05 -04:00
|
|
|
"eslint": "^8.22.0",
|
2022-11-29 08:12:43 -05:00
|
|
|
"jest": "^29.5.0",
|
|
|
|
"mock-fs": "^5.2.0",
|
|
|
|
"ts-jest": "^29.1.0",
|
2022-08-21 08:16:05 -04:00
|
|
|
"typescript": "^4.7.4",
|
2021-12-07 14:00:58 -05:00
|
|
|
"yazl": "^2.5.1"
|
2021-09-21 03:22:09 -04:00
|
|
|
},
|
2021-09-22 09:21:12 -04:00
|
|
|
"dependencies": {
|
2022-05-31 14:17:20 -04:00
|
|
|
"fast-glob": "^3.2.11",
|
2022-11-27 07:09:48 -05:00
|
|
|
"node-fetch": "^3.3.1",
|
2021-12-07 13:57:22 -05:00
|
|
|
"node-stream-zip": "^1.15.0",
|
2022-11-27 13:33:41 -05:00
|
|
|
"semver": "^7.5.0",
|
2022-11-27 13:37:41 -05:00
|
|
|
"toml": "^3.0.0",
|
|
|
|
"yaml": "^2.2.2"
|
2021-09-22 09:21:12 -04:00
|
|
|
}
|
2021-09-20 07:01:32 -04:00
|
|
|
}
|