-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.8 KB
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
{
"$schema": "https://www.schemastore.org/package.json",
"name": "workflows",
"version": "0.12.0",
"private": true,
"description": "Central reusable GitHub Actions workflows for the kirchDev estate.",
"keywords": [
"actions",
"ci",
"github-actions",
"kirchdev",
"reusable-workflows",
"workflow-call"
],
"homepage": "https://github.com/kirchDev/workflows#readme",
"bugs": {
"url": "https://github.com/kirchDev/workflows/issues"
},
"license": "MIT",
"author": "Titus Kirch <titus.kirch@kirch.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/kirchDev/workflows.git"
},
"type": "module",
"scripts": {
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix --deny-warnings",
"lint:actions": "docker run --rm -e SHELLCHECK_OPTS=\"-e SC2016 -e SC2086 -e SC2129\" -v \"$PWD\":/repo -w /repo rhysd/actionlint:1.7.7 -color",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm lint:actions && pnpm format && pnpm typecheck && pnpm check:policy && pnpm check:inputs",
"check:fix": "pnpm lint:fix && pnpm format:fix",
"check:policy": "node scripts/check-policy-parity.ts",
"check:inputs": "node scripts/check-caller-inputs.ts",
"skills:update": "pnpm dlx skills@latest update -p -y",
"taze": "taze",
"taze:w": "taze -w",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@commitlint/types": "^21.2.0",
"@types/node": "^26.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"taze": "^21.1.0",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@12.3.4"
}