-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.3 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "monday-cli",
"version": "0.12.0",
"description": "Agent-first CLI for Monday.com — read boards, file backlog items, transition statuses, and post comments from the terminal. Built for AI coding agents (Claude Code, Codex) with humans as a welcome second audience.",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"monday": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"monday",
"monday.com",
"cli",
"graphql",
"agent",
"ai-agent",
"claude-code",
"codex",
"automation",
"task-management",
"kanban",
"boards",
"typescript"
],
"homepage": "https://github.com/Firer/monday-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Firer/monday-cli.git"
},
"bugs": {
"url": "https://github.com/Firer/monday-cli/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage --maxWorkers=2",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"start": "node dist/cli/index.js",
"dev": "tsx src/cli/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run typecheck && npm run lint && npm run test:unit && npm run test:integration && npm run build"
},
"dependencies": {
"@colors/colors": "^1.5.0",
"@mondaydotcomorg/api": "^14.0.0",
"chalk": "^5.6.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"dotenv": "^17.0.0",
"graphql": "^16.8.2",
"ora": "^9.0.0",
"smol-toml": "^1.6.1",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.2",
"ajv": "^8.20.0",
"eslint": "^10.0.3",
"tsx": "^4.20.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.2"
},
"author": "Nick Webster",
"license": "MIT"
}