-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "@krodak/clickup-cli",
"version": "1.20.1",
"description": "ClickUp CLI for AI agents and humans",
"type": "module",
"license": "MIT",
"author": "Krzysztof Rodak",
"repository": {
"type": "git",
"url": "https://github.com/krodak/clickup-cli.git"
},
"homepage": "https://github.com/krodak/clickup-cli",
"keywords": [
"clickup",
"cli",
"tasks",
"project-management",
"ai-agents",
"sprint",
"initiative"
],
"bin": {
"cup": "./dist/index.js"
},
"files": [
"dist",
".claude-plugin",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:watch": "vitest",
"docs:sync": "tsx scripts/sync-command-docs.ts",
"typecheck": "tsc --project tsconfig.build.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run typecheck && npm run lint && npm test && npm run build"
},
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"chalk": "^5.6.2",
"commander": "^14.0.3"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"dotenv": "^17.3.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.56.1",
"vitest": "^4.1.1"
}
}