-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 866 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 866 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
{
"name": "skills",
"keywords": [
"CLI",
"agents",
"autonomous",
"skills"
],
"license": "MIT",
"author": "omar aziz <gh+skills@omar.mov>",
"repository": "github:o-az/skills",
"type": "module",
"scripts": {
"lint": "oxlint --fix",
"format": "oxfmt --write",
"check": "bun run --parallel --stream --reporter='append-only' format lint",
"validate-skills": "bash -c 'for dir in skills/*/; do uvx --from skills-ref agentskills validate $dir; done'",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@j178/prek": "^0.4.0",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "bun prek run --all-files --config='.github/.pre-commit.yml' && bun check && bun validate-skills"
},
"trustedDependencies": [
"@j178/prek"
]
}