-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 914 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
31
32
33
{
"name": "release-comment-action",
"version": "0.4.1",
"description": "",
"main": "index.js",
"module": "index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"lint": "eslint --cache --fix --ignore-path .eslintignore .",
"format": "prettier --write --ignore-path .eslintignore ."
},
"author": "Logan McAnsh <[email protected]> (https://mcan.sh/)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"execa": "^8.0.1",
"semver": "^7.5.4",
"trim-newlines": "^5.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.0.0",
"@tsconfig/node16": "^16.1.1",
"@types/node": "^20.6.2",
"@types/semver": "^7.5.2",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.49.0",
"eslint-plugin-prefer-let": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}