-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.49 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
{
"name": "eslint-remote-tester-run-action",
"version": "0.0.1",
"description": "GitHub Action for running eslint-remote-tester",
"main": "dist/index.mjs",
"type": "module",
"repository": "https://github.com/AriPerkkio/eslint-remote-tester-run-action",
"homepage": "https://github.com/AriPerkkio/eslint-remote-tester-run-action",
"bugs": "https://github.com/AriPerkkio/eslint-remote-tester-run-action",
"author": "Ari Perkkio <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "node esbuild.config.js",
"lint": "eslint --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"eslint-remote-tester": "^4.0.0",
"semver": "^7.3.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@eslint/js": "^9.4.0",
"@types/eslint": "^8.56.10",
"@types/node": "^14.14.21",
"@types/semver": "^7.3.4",
"esbuild": "^0.21.4",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"msw": "^0.26.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"vitest": "^1.6.0"
}
}