-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "job-checker",
"version": "3.0.2",
"private": true,
"packageManager": "[email protected]",
"description": "Checks which jobs are ",
"keywords": [
"actions",
"node",
"setup"
],
"author": "Rotki Solutions GmbH",
"main": "lib/main.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "ncc build --source-map --license licenses.txt",
"preinstall": "npx only-allow pnpm",
"test": "vitest",
"all": "pnpm run build && pnpm run lint && pnpm run package && pnpm run test",
"prepare": "husky install",
"release": "bumpp --no-push"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@rotki/eslint-config": "3.6.0",
"@tsconfig/node20": "20.1.4",
"@types/node": "20.17.10",
"@vercel/ncc": "0.38.3",
"bumpp": "9.9.1",
"eslint": "9.16.0",
"eslint-plugin-github": "5.1.4",
"husky": "9.1.7",
"js-yaml": "4.1.0",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"engines": {
"node": ">=20 <21",
"pnpm": ">=9 <10"
},
"lint-staged": {
"*.{js,ts,vue,md,json,yml}": "eslint"
}
}