-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 971 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
{
"name": "meridian-dev-tooling",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.29.3",
"description": "Dev tooling for the Meridian Claude Code plugin: lint, format, typecheck, and cross-OS hook tests. Not published; the plugin itself ships no JS dependencies.",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "node --test test/meridian-hooks.test.mjs test/meridian-lib.test.mjs",
"test:coverage": "node --test --experimental-test-coverage test/meridian-hooks.test.mjs test/meridian-lib.test.mjs",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
}
}