-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1000 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1000 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
{
"name": "trello-cli",
"version": "0.0.3",
"description": "Unofficial CLI for managing your Trello boards from the terminal",
"type": "module",
"bin": {
"trello": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build --compile --minify src/index.ts --outfile dist/trello",
"typecheck": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/bun": "latest",
"@types/prompts": "^2.4.9",
"typescript": "^5.4.5",
"vitepress": "^1.6.4"
},
"packageManager": "yarn@1.22.22",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomLadder/trello-cli"
},
"keywords": [
"trello",
"cli",
"boards",
"cards",
"productivity"
]
}