-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 920 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
{
"name": "agentic-dev-team",
"version": "0.0.0",
"private": true,
"description": "Tooling for the dev-team Claude Code plugin marketplace (lint config for TypeScript eval fixtures).",
"type": "module",
"scripts": {
"eval:changed": "bash scripts/eval-changed.sh",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"test:ci": "bash scripts/ci-local.sh",
"update": "python3 scripts/update_deps.py"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx}": "eslint --fix",
"*.py": "python3 -m ruff check --fix"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/js": "^10.0.1",
"commitlint": "^21.2.2",
"eslint": "^10.10.0",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0"
},
"engines": {
"node": ">=22"
}
}