@krodak/clickup-cli 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +395 -0
- package/dist/index.js +1772 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@krodak/clickup-cli",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "ClickUp CLI for AI agents and humans",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Krzysztof Rodak",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/krodak/clickup-cli.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/krodak/clickup-cli",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"clickup",
|
|
15
|
+
"cli",
|
|
16
|
+
"tasks",
|
|
17
|
+
"project-management",
|
|
18
|
+
"ai-agents",
|
|
19
|
+
"sprint",
|
|
20
|
+
"initiative"
|
|
21
|
+
],
|
|
22
|
+
"bin": {
|
|
23
|
+
"cu": "./dist/index.js"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"dev": "tsx src/index.ts",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
35
|
+
"test:watch": "vitest",
|
|
36
|
+
"typecheck": "tsc --project tsconfig.build.json --noEmit",
|
|
37
|
+
"lint": "eslint .",
|
|
38
|
+
"lint:fix": "eslint . --fix",
|
|
39
|
+
"format": "prettier --write .",
|
|
40
|
+
"format:check": "prettier --check .",
|
|
41
|
+
"prepublishOnly": "npm run typecheck && npm run lint && npm test && npm run build"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@inquirer/prompts": "^8.3.0",
|
|
45
|
+
"chalk": "^5.6.2",
|
|
46
|
+
"commander": "^14.0.3"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=22.0.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@eslint/js": "^10.0.1",
|
|
53
|
+
"@inquirer/testing": "^3.3.0",
|
|
54
|
+
"@types/node": "^25.3.0",
|
|
55
|
+
"dotenv": "^17.3.1",
|
|
56
|
+
"eslint": "^10.0.2",
|
|
57
|
+
"eslint-config-prettier": "^10.1.8",
|
|
58
|
+
"prettier": "^3.8.1",
|
|
59
|
+
"tsup": "^8.0.0",
|
|
60
|
+
"tsx": "^4.0.0",
|
|
61
|
+
"typescript": "^5.0.0",
|
|
62
|
+
"typescript-eslint": "^8.56.1",
|
|
63
|
+
"vitest": "^2.0.0"
|
|
64
|
+
}
|
|
65
|
+
}
|