mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
42dbb0af95
Finally, I am able do that! All QOL updates of `node-fetch` were unsupported on Node12. Also, it includes `FormData` polyfill now
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "mc-publish",
|
|
"version": "3.2.0",
|
|
"description": "GitHub Action that helps you publish your Minecraft mods",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"build": "ncc build --source-map --license license.txt && ncc run scripts/index.ts",
|
|
"test:lint": "eslint src/**/*.ts && eslint test/**/*.ts",
|
|
"test:unit": "jest",
|
|
"test": "npm run test:lint && npm run test:unit"
|
|
},
|
|
"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.18.10",
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
"@types/node": "^18.7.8",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"@types/yazl": "^2.4.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
"@typescript-eslint/parser": "^5.33.1",
|
|
"@vercel/ncc": "^0.34.0",
|
|
"babel-jest": "^28.1.3",
|
|
"eslint": "^8.22.0",
|
|
"jest": "^28.1.3",
|
|
"typescript": "^4.7.4",
|
|
"yaml": "2.0.0",
|
|
"yazl": "^2.5.1"
|
|
},
|
|
"dependencies": {
|
|
"fast-glob": "^3.2.11",
|
|
"node-fetch": "^3.3.1",
|
|
"node-stream-zip": "^1.15.0",
|
|
"toml": "^3.0.0"
|
|
}
|
|
}
|