-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.18 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "dismiss-stale-reviews",
"version": "1.0.0",
"main": "src/main.ts",
"scripts": {
"type-check": "tsc",
"format": "prettier . --write -u",
"format-check": "prettier . --check -u",
"lint": "eslint",
"package": "tsup src/main.ts --clean",
"test": "jest --passWithNoTests",
"generate": "graphql-codegen-esm --config codegen.ts",
"all": "bun run type-check && bun run format-check && bun run lint && bun run package",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/Balvajs/dismiss-stale-reviews.git"
},
"keywords": [
"actions"
],
"engines": {
"node": "=20"
},
"packageManager": "[email protected]",
"type": "module",
"author": "Balvajs",
"license": "MIT",
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.14.0",
"@graphql-codegen/add": "5.0.3",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/near-operation-file-preset": "3.0.0",
"@graphql-codegen/typescript": "4.1.1",
"@graphql-codegen/typescript-operations": "4.3.1",
"@octokit/action": "7.0.0",
"@octokit/core": "6.1.2",
"@octokit/graphql": "8.1.1",
"@octokit/graphql-schema": "15.25.0",
"@octokit/plugin-paginate-graphql": "5.2.4",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@stylistic/eslint-plugin": "2.10.1",
"@swc/core": "1.9.1",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"chalk": "5.3.0",
"codeowners": "5.1.1",
"dayjs": "1.11.13",
"eslint": "9.14.0",
"graphql": "16.9.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"minimatch": "10.0.1",
"node-fetch": "3.3.2",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"semantic-release-major-tag": "0.3.2",
"simple-git": "3.27.0",
"ts-node-dev": "2.0.0",
"tsup": "8.3.5",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
},
"overrides": {
"@octokit/core": "$@octokit/core"
}
}