-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
100 lines (100 loc) · 2.4 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "merge-schedule-action",
"private": true,
"version": "2.5.0",
"description": "GitHub Action to merge pull requests on a scheduled day",
"repository": "github:gr2m/merge-schedule-action",
"keywords": [
"github-action"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"scripts": {
"prebuild": "npx rimraf dist",
"build": "ncc build lib/index.ts --license licenses.txt",
"lint": "eslint lib/**/*.ts",
"test": "vitest",
"test:ci": "vitest run"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.6.1",
"@types/node": "^22.7.4",
"@types/std-mocks": "^1.0.4",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.17.0",
"eslint-plugin-github": "^4.3.6",
"mockdate": "^3.0.5",
"msw": "^2.4.9",
"prettier": "^2.6.2",
"std-mocks": "^2.0.0",
"timezone-mock": "^1.3.2",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
"semantic-release-plugin-github-breaking-version-tag",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"dist/*"
],
"message": "build(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.0.3"
},
"eslintConfig": {
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:github/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"i18n-text/no-en": "off",
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"camelcase": "off",
"@typescript-eslint/no-floating-promises": "off"
},
"env": {
"node": true,
"es6": true
},
"ignorePatterns": [
"dist/",
"node_modules/"
],
"overrides": [
{
"files": [
"*.test.ts"
],
"rules": {
"filenames/match-regex": "off"
}
}
]
},
"prettier": {},
"engines": {
"node": ">=16.15"
}
}