mc-publish/package.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2021-09-20 07:01:32 -04:00
{
"name": "mc-publish",
2022-06-05 13:25:31 -04:00
"version": "3.0.0",
2021-09-20 07:01:32 -04:00
"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",
2021-12-10 09:08:12 -05:00
"test:lint": "eslint src/**/*.ts && eslint test/**/*.ts",
2021-09-21 03:27:32 -04:00
"test:unit": "jest",
"test": "npm run test:lint && npm run test:unit"
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-05-31 14:17:20 -04:00
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/node": "^17.0.36",
"@types/node-fetch": "^2.6.1",
2021-12-07 14:00:58 -05:00
"@types/yazl": "^2.4.2",
2022-05-31 14:17:20 -04:00
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vercel/ncc": "^0.34.0",
"babel-jest": "^28.1.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"typescript": "^4.7.2",
"yaml": "2.0.0",
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
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"fast-glob": "^3.2.11",
"form-data": "^3.0.1",
2022-05-31 14:17:20 -04:00
"node-fetch": "^2.6.7",
"node-stream-zip": "^1.15.0",
"toml": "^3.0.0"
2021-09-22 09:21:12 -04:00
}
2021-09-20 07:01:32 -04:00
}