-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 949 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "tecli",
"version": "0.4.0",
"description": "Time entry CLI, web UI, and TUI for Costpoint.",
"bin": {
"te": "cli.js"
},
"scripts": {
"server": "node cli.js server",
"tui": "node cli.js tui",
"mcp": "node mcp-server.js"
},
"keywords": [
"cli",
"costpoint",
"timesheet",
"time-entry"
],
"author": "Ken H <kanno41@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"moment": "^2.30.1",
"ora": "^5.4.1",
"playwright": "^1.59.1",
"pptxgenjs": "^4.0.1",
"puppeteer": "^24.15.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2"
}
}