-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "craft",
"private": true,
"type": "module",
"description": "Dev-only tooling for the craft plugin repo. craft itself ships no runtime dependencies.",
"scripts": {
"test": "node --test 'lib/**/*.test.mjs' 'opencode/**/*.test.mjs'",
"lint": "eslint lib opencode/plugin --max-warnings 0",
"check:workflows": "node lib/check-workflows.mjs",
"check:skills": "node lib/check-skills.mjs",
"check:evals": "node lib/check-evals.mjs",
"check:types": "npm --prefix opencode/plugin run typecheck",
"check:opencode-frontmatter": "python3 opencode/scripts/check-frontmatter.py agent opencode/agents/*.md && python3 opencode/scripts/check-frontmatter.py command opencode/commands/*.md"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"eslint": "^9.39.0"
}
}