trello-cli-unofficial 0.8.1 → 0.9.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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -29,12 +29,11 @@ An unofficial Trello CLI using Power-Up authentication, built with Bun for maxim
29
29
 
30
30
  ### Prerequisites
31
31
 
32
- - **[Bun](https://bun.sh/) (Recommended)** or **Node.js 16+** installed
32
+ - **[Node.js 16+](https://nodejs.org/) (Required)**
33
+ - **[Bun](https://bun.sh/) (Optional, for better performance)**
33
34
  - Trello account with Power-Up enabled
34
35
  - **Supported Platforms:** Linux, macOS, Windows
35
36
 
36
- **Note:** Bun provides better performance, but Node.js works perfectly fine.
37
-
38
37
  ### NPM Installation (Recommended)
39
38
 
40
39
  The CLI works with both Bun and Node.js. Choose the package manager you prefer:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "trello-cli-unofficial",
3
3
  "type": "module",
4
- "version": "0.8.1",
4
+ "version": "0.9.0",
5
5
  "private": false,
6
6
  "description": "Unofficial Trello CLI using Power-Up authentication, built with Bun for maximum performance",
7
7
  "author": "Matheus Caiser <matheus.kaiser@gmail.com> (https://www.mrdeveloper.com.br/)",
@@ -47,7 +47,6 @@
47
47
  "src"
48
48
  ],
49
49
  "engines": {
50
- "bun": ">=1.0.0",
51
50
  "node": ">=16.0.0"
52
51
  },
53
52
  "scripts": {
@@ -63,6 +62,7 @@
63
62
  "test:coverage:threshold": "bun test --coverage --coverage-reporter=lcov && bun run scripts/check-coverage.js",
64
63
  "lint": "eslint .",
65
64
  "lint:fix": "eslint . --fix",
65
+ "lint:json": "node -e \"JSON.parse(require('fs').readFileSync(process.argv[1], 'utf8')); console.log('JSON is valid')\" --",
66
66
  "typecheck": "tsc --noEmit",
67
67
  "commitlint": "commitlint --edit",
68
68
  "validate": "bun run lint && bun run typecheck && bun run test:coverage:threshold",
@@ -104,6 +104,9 @@
104
104
  "lint-staged": {
105
105
  "*.{js,ts,tsx}": [
106
106
  "eslint --max-warnings 0"
107
+ ],
108
+ "*.json": [
109
+ "bun run lint:json"
107
110
  ]
108
111
  }
109
112
  }