generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"name": "delete-stale-branches",
"version": "1.0.0",
"main": "src/main.ts",
"scripts": {
"preinstall": "bunx only-allow bun",
"type-check": "tsc",
"format": "prettier . --write -u",
"format-check": "prettier . --check -u",
"lint": "eslint src/**/*.ts",
"package": "tsup src/main.ts --clean",
"test": "jest --passWithNoTests",
"generate": "graphql-codegen-esm --config codegen.ts",
"all": "bun run type-check && bun run format && bun run lint && bun run package && bun run test",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/Balvajs/delete-stale-branches.git"
},
"keywords": [
"actions"
],
"engines": {
"node": "=20"
},
"packageManager": "[email protected]",
"type": "module",
"author": "Balvajs",
"license": "MIT",
"lint-staged": {
"*.{js,ts,json,yml,md,mdx}": "prettier --write"
},
"devDependencies": {
"@actions/core": "1.10.1",
"@eslint/eslintrc": "3.0.2",
"@eslint/js": "9.0.0",
"@graphql-codegen/add": "5.0.2",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/near-operation-file-preset": "3.0.0",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-operations": "4.2.0",
"@octokit/action": "6.1.0",
"@octokit/graphql": "7.0.2",
"@octokit/graphql-schema": "14.58.0",
"@octokit/plugin-paginate-graphql": "4.0.1",
"@semantic-release/commit-analyzer": "12.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "13.0.0",
"@stylistic/eslint-plugin": "1.7.0",
"@swc/core": "1.4.13",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/node": "20.12.6",
"chalk": "5.3.0",
"dayjs": "1.11.10",
"eslint": "9.0.0",
"eslint-config-prettier": "9.1.0",
"graphql": "16.8.1",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"node-fetch": "3.3.2",
"prettier": "3.2.5",
"semantic-release": "23.0.7",
"semantic-release-major-tag": "0.3.2",
"ts-node": "10.9.2",
"tsup": "8.0.2",
"typescript": "5.4.4",
"typescript-eslint": "7.6.0"
}
}