forked from benwoo1110/modrinth-upload-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 802 Bytes
/
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
{
"name": "modrinth-release-action",
"version": "1.0.0",
"description": "Release versions to Modrinth with github actions!",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js --license LICENSE",
"lint": "eslint index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0",
"form-data": "^4.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"typescript": "^5.1.6"
}
}