-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 733 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 733 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
{
"name": "kys-claude-plugin",
"version": "1.0.0",
"type": "module",
"description": "Claude Code plugin collection",
"scripts": {
"build": "make build",
"validate": "make validate",
"validate:specs": "make validate-specs",
"validate:paths": "make validate-paths",
"validate:versions": "make validate-versions",
"validate:arch": "make validate-arch",
"detect": "make detect",
"lint": "eslint 'plugins/**/*.ts'",
"lint:fix": "eslint 'plugins/**/*.ts' --fix",
"typecheck": "tsc --build",
"check": "npm run lint && npm run typecheck"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^17.3.0",
"typescript-eslint": "^8.54.0"
}
}