ccjk 2.0.9 → 2.0.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/dist/chunks/simple-config.mjs +1 -1
- package/dist/cli.mjs +0 -0
- package/package.json +49 -52
|
@@ -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.
|
|
23
|
+
const version = "2.0.10";
|
|
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.
|
|
5
|
-
"packageManager": "pnpm@10.17.1",
|
|
4
|
+
"version": "2.0.10",
|
|
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,58 @@
|
|
|
95
94
|
"engines": {
|
|
96
95
|
"node": ">=20"
|
|
97
96
|
},
|
|
97
|
+
"dependencies": {
|
|
98
|
+
"@iarna/toml": "^2.2.5",
|
|
99
|
+
"@types/semver": "^7.7.1",
|
|
100
|
+
"ansis": "^4.1.0",
|
|
101
|
+
"cac": "^6.7.14",
|
|
102
|
+
"chokidar": "^4.0.3",
|
|
103
|
+
"dayjs": "^1.11.18",
|
|
104
|
+
"find-up-simple": "^1.0.1",
|
|
105
|
+
"fs-extra": "^11.3.2",
|
|
106
|
+
"gray-matter": "^4.0.3",
|
|
107
|
+
"i18next": "^25.5.2",
|
|
108
|
+
"i18next-fs-backend": "^2.6.0",
|
|
109
|
+
"inquirer": "^12.9.6",
|
|
110
|
+
"inquirer-toggle": "^1.0.1",
|
|
111
|
+
"ora": "^9.0.0",
|
|
112
|
+
"pathe": "^2.0.3",
|
|
113
|
+
"semver": "^7.7.2",
|
|
114
|
+
"smol-toml": "^1.4.2",
|
|
115
|
+
"tinyexec": "^1.0.1",
|
|
116
|
+
"trash": "^10.0.0"
|
|
117
|
+
},
|
|
118
|
+
"devDependencies": {
|
|
119
|
+
"@antfu/eslint-config": "^5.4.1",
|
|
120
|
+
"@changesets/cli": "^2.29.7",
|
|
121
|
+
"@commitlint/cli": "^19.8.1",
|
|
122
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
123
|
+
"@commitlint/types": "^19.8.1",
|
|
124
|
+
"@types/fs-extra": "^11.0.4",
|
|
125
|
+
"@types/inquirer": "^9.0.9",
|
|
126
|
+
"@types/node": "^22.18.6",
|
|
127
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
128
|
+
"@vitest/ui": "^3.2.4",
|
|
129
|
+
"eslint": "^9.36.0",
|
|
130
|
+
"eslint-plugin-format": "^1.0.2",
|
|
131
|
+
"glob": "^11.0.3",
|
|
132
|
+
"husky": "^9.1.7",
|
|
133
|
+
"lint-staged": "^16.2.0",
|
|
134
|
+
"tsx": "^4.20.5",
|
|
135
|
+
"typescript": "^5.9.2",
|
|
136
|
+
"unbuild": "^3.6.1",
|
|
137
|
+
"vitest": "^3.2.4"
|
|
138
|
+
},
|
|
139
|
+
"lint-staged": {
|
|
140
|
+
"*": [
|
|
141
|
+
"pnpm lint"
|
|
142
|
+
]
|
|
143
|
+
},
|
|
98
144
|
"scripts": {
|
|
99
145
|
"dev": "tsx ./src/cli.ts",
|
|
100
146
|
"build": "unbuild",
|
|
101
147
|
"start": "node bin/ccjk.mjs",
|
|
102
148
|
"typecheck": "tsc --noEmit",
|
|
103
|
-
"prepublishOnly": "pnpm build",
|
|
104
149
|
"lint": "eslint",
|
|
105
150
|
"lint:fix": "eslint --fix",
|
|
106
151
|
"test": "vitest",
|
|
@@ -112,58 +157,10 @@
|
|
|
112
157
|
"version": "changeset version",
|
|
113
158
|
"update:deps": "pnpx taze major -r -w",
|
|
114
159
|
"release": "pnpm build && changeset publish",
|
|
115
|
-
"prepare": "husky",
|
|
116
160
|
"commitlint": "commitlint",
|
|
117
161
|
"commitlint:check": "commitlint --from HEAD~1 --to HEAD --verbose",
|
|
118
162
|
"docs:dev": "pnpm -F @ccjk/docs dev",
|
|
119
163
|
"docs:build": "pnpm -F @ccjk/docs build",
|
|
120
164
|
"docs:preview": "pnpm -F @ccjk/docs preview"
|
|
121
|
-
},
|
|
122
|
-
"dependencies": {
|
|
123
|
-
"@iarna/toml": "catalog:",
|
|
124
|
-
"@types/semver": "catalog:",
|
|
125
|
-
"ansis": "catalog:",
|
|
126
|
-
"cac": "catalog:",
|
|
127
|
-
"chokidar": "catalog:",
|
|
128
|
-
"dayjs": "catalog:",
|
|
129
|
-
"find-up-simple": "catalog:",
|
|
130
|
-
"fs-extra": "catalog:",
|
|
131
|
-
"gray-matter": "catalog:",
|
|
132
|
-
"i18next": "catalog:",
|
|
133
|
-
"i18next-fs-backend": "catalog:",
|
|
134
|
-
"inquirer": "catalog:",
|
|
135
|
-
"inquirer-toggle": "catalog:",
|
|
136
|
-
"ora": "catalog:",
|
|
137
|
-
"pathe": "catalog:",
|
|
138
|
-
"semver": "catalog:",
|
|
139
|
-
"smol-toml": "catalog:",
|
|
140
|
-
"tinyexec": "catalog:",
|
|
141
|
-
"trash": "catalog:"
|
|
142
|
-
},
|
|
143
|
-
"devDependencies": {
|
|
144
|
-
"@antfu/eslint-config": "catalog:",
|
|
145
|
-
"@changesets/cli": "catalog:",
|
|
146
|
-
"@commitlint/cli": "catalog:",
|
|
147
|
-
"@commitlint/config-conventional": "catalog:",
|
|
148
|
-
"@commitlint/types": "catalog:",
|
|
149
|
-
"@types/fs-extra": "catalog:",
|
|
150
|
-
"@types/inquirer": "catalog:",
|
|
151
|
-
"@types/node": "catalog:",
|
|
152
|
-
"@vitest/coverage-v8": "catalog:",
|
|
153
|
-
"@vitest/ui": "catalog:",
|
|
154
|
-
"eslint": "catalog:",
|
|
155
|
-
"eslint-plugin-format": "catalog:",
|
|
156
|
-
"glob": "catalog:",
|
|
157
|
-
"husky": "catalog:",
|
|
158
|
-
"lint-staged": "catalog:",
|
|
159
|
-
"tsx": "catalog:",
|
|
160
|
-
"typescript": "catalog:",
|
|
161
|
-
"unbuild": "catalog:",
|
|
162
|
-
"vitest": "catalog:"
|
|
163
|
-
},
|
|
164
|
-
"lint-staged": {
|
|
165
|
-
"*": [
|
|
166
|
-
"pnpm lint"
|
|
167
|
-
]
|
|
168
165
|
}
|
|
169
|
-
}
|
|
166
|
+
}
|