-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
39
{
"name": "@checkly/checkly-plugin",
"version": "0.0.1",
"private": true,
"description": "Checkly skills, agents, and commands for AI coding agents.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/checkly/checkly-plugin.git"
},
"type": "module",
"scripts": {
"sync": "node scripts/sync.ts",
"test": "node --test test/*.test.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@types/node": "^24.0.0",
"jiti": "^2.7.0",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.6.0"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npm run lint && npm run format:check && npm run typecheck"
},
"engines": {
"node": ">=24"
}
}