-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"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/*.test.mjs\"",
"test:coverage": "node --test --experimental-test-coverage \"test/*.test.mjs\"",
"eval": "promptfoo eval -c promptfooconfig.yaml",
"eval:view": "promptfoo view",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm test"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.191",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"promptfoo": "0.121.17",
"typescript": "^6.0.3"
}
}