-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.65 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "commitlint-format",
"version": "0.0.0",
"description": "Variative and customizable format for commitlint",
"author": "codeismyid",
"license": "MIT",
"homepage": "https://github.com/codeismyid/commitlint-format#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codeismyid/commitlint-format.git"
},
"bugs": {
"url": "https://github.com/codeismyid/commitlint-format/issues"
},
"files": ["dist"],
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"commitlint",
"commitlint-format",
"commitlint-formatter",
"format",
"formatter"
],
"scripts": {
"prepare": "bunx husky || true",
"ci": "bun install --frozen-lockfile",
"clean": "bun clean:deps && bun clean:docs && bun clean:dist && bun clean:codecov",
"clean:codecov": "rm -rf coverage",
"clean:deps": "rm -rf node_modules && rm -f bun.lockb && rm -f bun.lock",
"clean:dist": "rm -rf dist",
"check": "bun check:type && bun check:spec && bun check:format && bun check:lint",
"check:format": "bunx biome check --linter-enabled=false",
"check:lint": "bunx biome lint",
"check:spec": "bun test --coverage",
"check:type": "bunx tsc && bunx type-coverage",
"dist": "bun clean:dist && bun ./scripts/dist.ts && bunx publint",
"fix": "bun fix:format && bun fix:lint",
"fix:format": "bunx biome check --linter-enabled=false --fix",
"fix:lint": "bunx biome lint --fix",
"reinstall": "bun clean:deps && bun install",
"release": "bun ./scripts/release.ts"
},
"dependencies": {},
"peerDependencies": {
"@commitlint/types": "^19.5.0",
"chalk": "^5.4.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.8.0",
"@types/bun": "latest",
"conventional-changelog-conventionalcommits": "8.0.0",
"esbuild": "0.25.3",
"husky": "9.1.7",
"publint": "0.3.12",
"semantic-release": "24.2.3",
"tsc-alias": "1.8.15",
"type-coverage": "2.29.7",
"typescript": "5.8.3"
},
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/formatters/*.d.ts",
"import": "./dist/formatters/*.js"
},
"./package.json": "./package.json"
},
"devEngines": {
"runtime": {
"name": "bun",
"onFail": "warn"
},
"packageManager": {
"name": "bun",
"onFail": "warn"
}
},
"typeCoverage": {
"atLeast": 100,
"strict": true,
"showRelativePath": true,
"ignoreAsAssertion": true,
"ignoreEmptyType": true
}
}