-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.26 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
{
"name": "chrisbanes-skills",
"version": "2026.8.16",
"description": "Skills for Kotlin, Android, JVM, and Jetpack Compose development by Chris Banes.",
"type": "module",
"main": ".opencode/plugins/chrisbanes-skills.js",
"repository": "https://github.com/chrisbanes/skills",
"license": "Apache-2.0",
"scripts": {
"lint": "remark --frail skills/ README.md evals/README.md",
"test": "python3 -m unittest scripts/test_release.py skills/run-github-project/scripts/test_rank_tickets.py && python3 -m unittest discover -s evals/tests -p 'test_*.py'",
"evals:validate": "python3 evals/run.py validate",
"evals:plan": "python3 evals/run.py plan --model gpt-5.6-sol --reasoning medium --judge-model gpt-5.6-sol --judge-reasoning high"
},
"devDependencies": {
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-lint-frontmatter-schema": "^3.15.4",
"remark-preset-lint-recommended": "^7.0.1"
},
"remarkConfig": {
"plugins": [
"remark-frontmatter",
[
"remark-lint-frontmatter-schema",
{
"schemas": {
"./skills.schema.json": [
"skills/**/SKILL.md"
]
}
}
],
"remark-preset-lint-recommended"
]
}
}