generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "lgtm-action",
"type": "module",
"version": "3.0.0",
"private": true,
"description": "Post image if you comment \"LGTM\"",
"author": "Nogic <24802730+nogic1008@users.noreply.github.com>",
"license": "MIT",
"repository": "https://github.com/ddradar/lgtm-action.git",
"keywords": [
"actions",
"github-actions",
"lgtm"
],
"main": "dist/index.js",
"packageManager": "npm@10.8.2+sha512.c7f0088c520a46596b85c6f8f1da943400199748a0f7ea8cb8df75469668dc26f6fb3ba26df87e2884a5ebe91557292d0f3db7d0929cdb4f14910c3032ac81fb",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky",
"build": "ncc build src/main.ts -m --license licenses.txt --target es2022",
"fix": "run-p \"lint:eslint -- --fix\" \"lint:prettier -- --write\"",
"lint": "run-p lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --ignore-path .gitignore -l \"**/*.{ts,mjs,json,md,yml}\"",
"test": "vitest run"
},
"lint-staged": {
"*.{ts,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": "prettier --write"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@octokit/webhooks-types": "^7.6.1",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "20.x",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.24",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^2.1.8"
}
}