forked from SmartsquareGmbH/delete-old-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "delete-old-packages",
"version": "0.7.0",
"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 .",
"test": "vitest run",
"verify": "pnpm pretty && pnpm lint && pnpm test"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^5.1.0",
"@octokit/plugin-throttling": "^8.2.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@octokit/types": "^12.6.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.20",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"vitest-mock-extended": "^1.3.1"
},
"packageManager": "[email protected]"
}