-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 859 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 859 Bytes
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
{
"version": "2.0.3",
"name": "release-action",
"description": "Create a release on GitHub",
"author": "fdiesel",
"license": "MIT",
"scripts": {
"build": "tsc",
"test:units": "jest --rootDir test/units",
"test": "jest",
"lint": "eslint src/**/*.ts test/**/*.ts",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"discord.js": "^14.17.3",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}