forked from Kir-Antipov/mc-publish
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "plugin-publish",
"version": "3.2.0",
"type": "module",
"description": "GitHub Action that helps you publish your Minecraft plugins, forked from mc-publish",
"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": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "npm run test:lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrycensRanch/plugin-publish.git"
},
"keywords": [
"github",
"actions",
"minecraft",
"minecraft-plugin",
"publish"
],
"contributors": [
{
"name": "BrycensRanch",
"email": "[email protected]",
"url": "https://github.com/BrycensRanch"
},
{
"name":"Kir-Antipov",
"url": "https://github.com/Kir-Antipov"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BrycensRanch/plugin-publish/issues"
},
"homepage": "https://github.com/BrycensRanch/plugin-publish#readme",
"devDependencies": {
"@babel/plugin-transform-async-to-generator": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@types/node": "^20.6.3",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vercel/ncc": "^0.38.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yaml": "2.3.2",
"yazl": "^2.5.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"aggregate-error": "^5.0.0",
"fast-glob": "^3.3.1",
"form-data": "^4.0.0",
"got": "^13.0.0",
"node-stream-zip": "^1.15.0",
"toml": "^3.0.0"
}
}