thought-cabinet 0.1.9 → 0.1.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thought-cabinet",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Thought Cabinet (thc) — CLI for structured AI coding workflows with filesystem-based memory and context management.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -14,16 +14,14 @@
14
14
  "src/agent-assets/**/*",
15
15
  ".thought-cabinet/**/*",
16
16
  "README.md",
17
- "docs/**/*",
18
- "scripts/postinstall.cjs"
17
+ "docs/**/*"
19
18
  ],
20
19
  "scripts": {
21
20
  "build": "tsup",
22
- "lint": "eslint . --ext .ts",
21
+ "lint": "eslint . --format stylish",
23
22
  "format": "prettier --write .",
24
23
  "format:check": "prettier --check .",
25
24
  "prepublishOnly": "npm run clean && npm run build",
26
- "postinstall": "node scripts/postinstall.cjs",
27
25
  "test": "vitest run --passWithNoTests",
28
26
  "check": "npm run format:check && npm run lint && npm run test && npm run build",
29
27
  "clean": "rm -rf dist/"
@@ -37,11 +35,12 @@
37
35
  },
38
36
  "devDependencies": {
39
37
  "@changesets/cli": "^2.29.8",
38
+ "@eslint/js": "^10.0.1",
40
39
  "@types/node": "^22.15.21",
41
40
  "@types/tabtab": "^3.0.4",
42
- "@typescript-eslint/eslint-plugin": "^8.32.1",
43
- "@typescript-eslint/parser": "^8.32.1",
44
- "eslint": "^8.57.0",
41
+ "@typescript-eslint/eslint-plugin": "^8.56.0",
42
+ "@typescript-eslint/parser": "^8.56.0",
43
+ "eslint": "^10.0.1",
45
44
  "eslint-config-prettier": "^10.1.5",
46
45
  "eslint-plugin-prettier": "^5.4.0",
47
46
  "prettier": "^3.5.3",
@@ -50,7 +49,18 @@
50
49
  "vitest": "^3.1.4"
51
50
  },
52
51
  "engines": {
53
- "node": ">=16"
52
+ "node": "^20.0.0 || >=22.0.0"
53
+ },
54
+ "overrides": {
55
+ "tabtab": {
56
+ "inquirer": "^10.0.0"
57
+ },
58
+ "external-editor": {
59
+ "tmp": "^0.2.4"
60
+ },
61
+ "@typescript-eslint/typescript-estree": {
62
+ "minimatch": "^10.2.1"
63
+ }
54
64
  },
55
65
  "keywords": [
56
66
  "cli",
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- // Show completion hint after installation
4
- // Skip in CI environments to avoid polluting CI logs
5
- const isCI =
6
- process.env.CI === 'true' ||
7
- process.env.CONTINUOUS_INTEGRATION === 'true' ||
8
- process.env.GITHUB_ACTIONS === 'true'
9
-
10
- if (!isCI) {
11
- console.log('')
12
- console.log(' \x1b[36mthought-cabinet\x1b[0m installed successfully!')
13
- console.log('')
14
- console.log(' To enable shell tab completion, run:')
15
- console.log(' \x1b[36mthc completion install\x1b[0m')
16
- console.log('')
17
- }