mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 08:20:58 -05:00
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "mc-publish",
|
|
"version": "1.0.0",
|
|
"description": "GitHub Action that helps you publish your Minecraft mods",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"build": "ncc build --source-map --license license.txt",
|
|
"test:lint": "eslint src/** && eslint test/**",
|
|
"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.15.6",
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
"@types/node": "^16.10.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.31.2",
|
|
"@typescript-eslint/parser": "^4.31.2",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"babel-jest": "^27.2.2",
|
|
"eslint": "^7.32.0",
|
|
"jest": "^27.2.2",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.5.0",
|
|
"@actions/github": "^5.0.0",
|
|
"fast-glob": "^3.2.7",
|
|
"formdata-node": "^4.2.2",
|
|
"modrinth": "^1.3.0",
|
|
"node-fetch": "^3.0.0"
|
|
}
|
|
}
|