ccjk 2.0.4 → 2.0.5

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.
@@ -20,7 +20,7 @@ import trash from 'trash';
20
20
  import i18next from 'i18next';
21
21
  import Backend from 'i18next-fs-backend';
22
22
 
23
- const version = "2.0.4";
23
+ const version = "2.0.5";
24
24
  const homepage = "https://github.com/miounet11/ccjk";
25
25
 
26
26
  const i18n = i18next.createInstance();
package/dist/cli.mjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "ccjk",
3
3
  "type": "module",
4
- "version": "2.0.4",
5
- "packageManager": "pnpm@10.17.1",
4
+ "version": "2.0.5",
6
5
  "description": "Claude Code JinKu - Advanced AI-powered development assistant with skills, agents, and LLM-driven audit",
7
6
  "author": {
8
7
  "name": "CCJK Team"
@@ -95,12 +94,57 @@
95
94
  "engines": {
96
95
  "node": ">=20"
97
96
  },
97
+ "dependencies": {
98
+ "@types/semver": "^7.7.1",
99
+ "ansis": "^4.1.0",
100
+ "cac": "^6.7.14",
101
+ "chokidar": "^4.0.3",
102
+ "dayjs": "^1.11.18",
103
+ "find-up-simple": "^1.0.1",
104
+ "fs-extra": "^11.3.2",
105
+ "gray-matter": "^4.0.3",
106
+ "i18next": "^25.5.2",
107
+ "i18next-fs-backend": "^2.6.0",
108
+ "inquirer": "^12.9.6",
109
+ "inquirer-toggle": "^1.0.1",
110
+ "ora": "^9.0.0",
111
+ "pathe": "^2.0.3",
112
+ "semver": "^7.7.2",
113
+ "smol-toml": "^1.4.2",
114
+ "tinyexec": "^1.0.1",
115
+ "trash": "^10.0.0"
116
+ },
117
+ "devDependencies": {
118
+ "@antfu/eslint-config": "^5.4.1",
119
+ "@changesets/cli": "^2.29.7",
120
+ "@commitlint/cli": "^19.8.1",
121
+ "@commitlint/config-conventional": "^19.8.1",
122
+ "@commitlint/types": "^19.8.1",
123
+ "@types/fs-extra": "^11.0.4",
124
+ "@types/inquirer": "^9.0.9",
125
+ "@types/node": "^22.18.6",
126
+ "@vitest/coverage-v8": "^3.2.4",
127
+ "@vitest/ui": "^3.2.4",
128
+ "eslint": "^9.36.0",
129
+ "eslint-plugin-format": "^1.0.2",
130
+ "glob": "^11.0.3",
131
+ "husky": "^9.1.7",
132
+ "lint-staged": "^16.2.0",
133
+ "tsx": "^4.20.5",
134
+ "typescript": "^5.9.2",
135
+ "unbuild": "^3.6.1",
136
+ "vitest": "^3.2.4"
137
+ },
138
+ "lint-staged": {
139
+ "*": [
140
+ "pnpm lint"
141
+ ]
142
+ },
98
143
  "scripts": {
99
144
  "dev": "tsx ./src/cli.ts",
100
145
  "build": "unbuild",
101
146
  "start": "node bin/ccjk.mjs",
102
147
  "typecheck": "tsc --noEmit",
103
- "prepublishOnly": "pnpm build",
104
148
  "lint": "eslint",
105
149
  "lint:fix": "eslint --fix",
106
150
  "test": "vitest",
@@ -112,57 +156,10 @@
112
156
  "version": "changeset version",
113
157
  "update:deps": "pnpx taze major -r -w",
114
158
  "release": "pnpm build && changeset publish",
115
- "prepare": "husky",
116
159
  "commitlint": "commitlint",
117
160
  "commitlint:check": "commitlint --from HEAD~1 --to HEAD --verbose",
118
161
  "docs:dev": "pnpm -F @ccjk/docs dev",
119
162
  "docs:build": "pnpm -F @ccjk/docs build",
120
163
  "docs:preview": "pnpm -F @ccjk/docs preview"
121
- },
122
- "dependencies": {
123
- "@types/semver": "catalog:types",
124
- "ansis": "catalog:cli",
125
- "cac": "catalog:cli",
126
- "chokidar": "catalog:runtime",
127
- "dayjs": "catalog:runtime",
128
- "find-up-simple": "catalog:runtime",
129
- "fs-extra": "catalog:runtime",
130
- "gray-matter": "catalog:runtime",
131
- "i18next": "catalog:runtime",
132
- "i18next-fs-backend": "catalog:runtime",
133
- "inquirer": "catalog:cli",
134
- "inquirer-toggle": "catalog:cli",
135
- "ora": "catalog:cli",
136
- "pathe": "catalog:runtime",
137
- "semver": "catalog:runtime",
138
- "smol-toml": "catalog:runtime",
139
- "tinyexec": "catalog:runtime",
140
- "trash": "catalog:runtime"
141
- },
142
- "devDependencies": {
143
- "@antfu/eslint-config": "catalog:build",
144
- "@changesets/cli": "catalog:tooling",
145
- "@commitlint/cli": "catalog:tooling",
146
- "@commitlint/config-conventional": "catalog:tooling",
147
- "@commitlint/types": "catalog:tooling",
148
- "@types/fs-extra": "catalog:types",
149
- "@types/inquirer": "catalog:types",
150
- "@types/node": "catalog:types",
151
- "@vitest/coverage-v8": "catalog:testing",
152
- "@vitest/ui": "catalog:testing",
153
- "eslint": "catalog:build",
154
- "eslint-plugin-format": "catalog:build",
155
- "glob": "catalog:testing",
156
- "husky": "catalog:tooling",
157
- "lint-staged": "catalog:tooling",
158
- "tsx": "catalog:build",
159
- "typescript": "catalog:build",
160
- "unbuild": "catalog:build",
161
- "vitest": "catalog:testing"
162
- },
163
- "lint-staged": {
164
- "*": [
165
- "pnpm lint"
166
- ]
167
164
  }
168
- }
165
+ }