-
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.51 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.51 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": "scaffold",
"version": "0.3.0",
"description": "Language-agnostic baseline template for new kirchDev repositories.",
"keywords": [
"commitlint",
"conventional-commits",
"dependabot",
"github-template",
"husky",
"kirchdev",
"nodejs",
"oxfmt",
"oxlint",
"pnpm",
"release-please",
"scaffold",
"template"
],
"homepage": "https://github.com/TitusKirch/scaffold#readme",
"bugs": {
"url": "https://github.com/TitusKirch/scaffold/issues"
},
"license": "MIT",
"author": "Titus Kirch <titus.kirch@kirch.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/TitusKirch/scaffold.git"
},
"type": "module",
"scripts": {
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix --deny-warnings",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"check": "pnpm lint && pnpm format && pnpm check:policy",
"check:fix": "pnpm lint:fix && pnpm format:fix",
"check:policy": "node scripts/check-policy-parity.js",
"skills:update": "pnpm dlx skills@latest update -p -y",
"taze": "taze",
"taze:w": "taze -w",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"oxfmt": "0.61.0",
"oxlint": "1.76.0",
"taze": "^19.16.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.2.2"
}