-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 983 Bytes
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
{
"name": "omp-commitwright",
"version": "0.1.0",
"description": "Commit messages and PR bodies in ASD-STE100 Simplified Technical English and Google developer documentation style, enforced for humans and coding agents",
"license": "MIT",
"type": "module",
"keywords": [
"omp",
"oh-my-pi",
"commit-message",
"vale",
"ASD-STE100",
"simplified-technical-english",
"git-hooks",
"conventional-commits"
],
"bin": {
"commitwright": "./bin/lint-commit-message.ts"
},
"omp": {
"extensions": [
"./extensions/commitwright.ts"
]
},
"files": [
"bin",
"extensions",
"rules",
"git-hooks",
"vale/.vale.ini",
"vale/styles/STE",
"vale/styles/config",
"README.md"
],
"scripts": {
"setup": "bun scripts/setup.ts",
"lint": "bun bin/lint-commit-message.ts",
"test": "bun test"
},
"devDependencies": {
"@oh-my-pi/pi-coding-agent": "^17.3.8",
"@types/bun": "latest"
}
}