-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 785 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 785 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": "eng-metrics",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"eng-metrics": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "node --test --import tsx $(find test -name \"*.test.ts\")",
"lint": "eslint .",
"format": "prettier -w ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^11.8.1",
"commander": "^13.1.0",
"dotenv": "^17.3.1",
"prompts": "^2.4.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.1",
"@types/prompts": "^2.4.9",
"eslint": "^9.20.1",
"prettier": "^3.5.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}