ccjk 2.0.12 → 2.0.13
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/dist/chunks/simple-config.mjs +1 -1
- package/package.json +41 -40
|
@@ -22,7 +22,7 @@ import i18next from 'i18next';
|
|
|
22
22
|
import Backend from 'i18next-fs-backend';
|
|
23
23
|
import { randomBytes } from 'node:crypto';
|
|
24
24
|
|
|
25
|
-
const version = "2.0.
|
|
25
|
+
const version = "2.0.13";
|
|
26
26
|
const homepage = "https://github.com/miounet11/ccjk";
|
|
27
27
|
|
|
28
28
|
const i18n = i18next.createInstance();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.13",
|
|
5
5
|
"packageManager": "pnpm@10.17.1",
|
|
6
6
|
"description": "Claude Code JinKu - Advanced AI-powered development assistant with skills, agents, and LLM-driven audit",
|
|
7
7
|
"author": {
|
|
@@ -100,7 +100,8 @@
|
|
|
100
100
|
"build": "unbuild",
|
|
101
101
|
"start": "node bin/ccjk.mjs",
|
|
102
102
|
"typecheck": "tsc --noEmit",
|
|
103
|
-
"prepublishOnly": "pnpm build",
|
|
103
|
+
"prepublishOnly": "node scripts/prepublish.mjs && pnpm build",
|
|
104
|
+
"postpublish": "node scripts/postpublish.mjs",
|
|
104
105
|
"lint": "eslint",
|
|
105
106
|
"lint:fix": "eslint --fix",
|
|
106
107
|
"test": "vitest",
|
|
@@ -120,46 +121,46 @@
|
|
|
120
121
|
"docs:preview": "pnpm -F @ccjk/docs preview"
|
|
121
122
|
},
|
|
122
123
|
"dependencies": {
|
|
123
|
-
"@iarna/toml": "
|
|
124
|
-
"@types/semver": "
|
|
125
|
-
"ansis": "
|
|
126
|
-
"cac": "
|
|
127
|
-
"chokidar": "
|
|
128
|
-
"dayjs": "
|
|
129
|
-
"find-up-simple": "
|
|
130
|
-
"fs-extra": "
|
|
131
|
-
"gray-matter": "
|
|
132
|
-
"i18next": "
|
|
133
|
-
"i18next-fs-backend": "
|
|
134
|
-
"inquirer": "
|
|
135
|
-
"inquirer-toggle": "
|
|
136
|
-
"ora": "
|
|
137
|
-
"pathe": "
|
|
138
|
-
"semver": "
|
|
139
|
-
"smol-toml": "
|
|
140
|
-
"tinyexec": "
|
|
141
|
-
"trash": "
|
|
124
|
+
"@iarna/toml": "^2.2.5",
|
|
125
|
+
"@types/semver": "^7.7.1",
|
|
126
|
+
"ansis": "^4.1.0",
|
|
127
|
+
"cac": "^6.7.14",
|
|
128
|
+
"chokidar": "^4.0.3",
|
|
129
|
+
"dayjs": "^1.11.18",
|
|
130
|
+
"find-up-simple": "^1.0.1",
|
|
131
|
+
"fs-extra": "^11.3.2",
|
|
132
|
+
"gray-matter": "^4.0.3",
|
|
133
|
+
"i18next": "^25.5.2",
|
|
134
|
+
"i18next-fs-backend": "^2.6.0",
|
|
135
|
+
"inquirer": "^12.9.6",
|
|
136
|
+
"inquirer-toggle": "^1.0.1",
|
|
137
|
+
"ora": "^9.0.0",
|
|
138
|
+
"pathe": "^2.0.3",
|
|
139
|
+
"semver": "^7.7.2",
|
|
140
|
+
"smol-toml": "^1.4.2",
|
|
141
|
+
"tinyexec": "^1.0.1",
|
|
142
|
+
"trash": "^10.0.0"
|
|
142
143
|
},
|
|
143
144
|
"devDependencies": {
|
|
144
|
-
"@antfu/eslint-config": "
|
|
145
|
-
"@changesets/cli": "
|
|
146
|
-
"@commitlint/cli": "
|
|
147
|
-
"@commitlint/config-conventional": "
|
|
148
|
-
"@commitlint/types": "
|
|
149
|
-
"@types/fs-extra": "
|
|
150
|
-
"@types/inquirer": "
|
|
151
|
-
"@types/node": "
|
|
152
|
-
"@vitest/coverage-v8": "
|
|
153
|
-
"@vitest/ui": "
|
|
154
|
-
"eslint": "
|
|
155
|
-
"eslint-plugin-format": "
|
|
156
|
-
"glob": "
|
|
157
|
-
"husky": "
|
|
158
|
-
"lint-staged": "
|
|
159
|
-
"tsx": "
|
|
160
|
-
"typescript": "
|
|
161
|
-
"unbuild": "
|
|
162
|
-
"vitest": "
|
|
145
|
+
"@antfu/eslint-config": "^5.4.1",
|
|
146
|
+
"@changesets/cli": "^2.29.7",
|
|
147
|
+
"@commitlint/cli": "^19.8.1",
|
|
148
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
149
|
+
"@commitlint/types": "^19.8.1",
|
|
150
|
+
"@types/fs-extra": "^11.0.4",
|
|
151
|
+
"@types/inquirer": "^9.0.9",
|
|
152
|
+
"@types/node": "^22.18.6",
|
|
153
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
154
|
+
"@vitest/ui": "^3.2.4",
|
|
155
|
+
"eslint": "^9.36.0",
|
|
156
|
+
"eslint-plugin-format": "^1.0.2",
|
|
157
|
+
"glob": "^11.0.3",
|
|
158
|
+
"husky": "^9.1.7",
|
|
159
|
+
"lint-staged": "^16.2.0",
|
|
160
|
+
"tsx": "^4.20.5",
|
|
161
|
+
"typescript": "^5.9.2",
|
|
162
|
+
"unbuild": "^3.6.1",
|
|
163
|
+
"vitest": "^3.2.4"
|
|
163
164
|
},
|
|
164
165
|
"lint-staged": {
|
|
165
166
|
"*": [
|