-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "delete-old-packages",
"version": "0.8.1",
"description": "GitHub Action for deleting old packages",
"repository": "https://github.com/SmartsquareGmbH/delete-old-packages",
"author": "Ruben Gees",
"contributors": [
"Ruben Gees",
"Prom3theu5",
"tisoft"
],
"license": "MIT",
"private": true,
"type": "module",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky",
"pre-commit": "lint-staged",
"start": "tsx src/index.ts",
"build": "ncc build src/index.ts --license LICENSE.txt --minify",
"lint": "eslint --max-warnings 0 .",
"pretty": "prettier --check .",
"check": "tsc --noEmit",
"test": "vitest run",
"verify": "pnpm pretty && pnpm lint && pnpm check && pnpm test"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.2",
"@octokit/plugin-throttling": "^9.3.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.5.4",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.5",
"vitest-mock-extended": "^2.0.2"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}