ccjk 1.3.1 → 1.3.3
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/README.ja.md +1 -1
- package/README.ko.md +1 -1
- package/README.zh-CN.md +1 -1
- package/dist/chunks/simple-config.mjs +3 -3
- package/dist/cli.mjs +4 -4
- package/package.json +10 -1
package/README.ja.md
CHANGED
|
@@ -80,7 +80,7 @@ npm install -g ccjk
|
|
|
80
80
|
║ ██████╗ ██████╗ ██╗██╗ ██╗ ║
|
|
81
81
|
║ ██╔════╝██╔════╝ ██║██║ ██╔╝ ║
|
|
82
82
|
║ ██║ ██║ ██║█████╔╝ Claude Code 錦庫 ║
|
|
83
|
-
║ ██║ ██║ ██ ██║██╔═██╗ v1.
|
|
83
|
+
║ ██║ ██║ ██ ██║██╔═██╗ v1.3.2 ║
|
|
84
84
|
║ ╚██████╗╚██████╗╚█████╔╝██║ ██╗ ║
|
|
85
85
|
║ ╚═════╝ ╚═════╝ ╚════╝ ╚═╝ ╚═╝ ║
|
|
86
86
|
╚═══════════════════════════════════════════════════════════╝
|
package/README.ko.md
CHANGED
|
@@ -80,7 +80,7 @@ npm install -g ccjk
|
|
|
80
80
|
║ ██████╗ ██████╗ ██╗██╗ ██╗ ║
|
|
81
81
|
║ ██╔════╝██╔════╝ ██║██║ ██╔╝ ║
|
|
82
82
|
║ ██║ ██║ ██║█████╔╝ Claude Code 진쿠 ║
|
|
83
|
-
║ ██║ ██║ ██ ██║██╔═██╗ v1.
|
|
83
|
+
║ ██║ ██║ ██ ██║██╔═██╗ v1.3.2 ║
|
|
84
84
|
║ ╚██████╗╚██████╗╚█████╔╝██║ ██╗ ║
|
|
85
85
|
║ ╚═════╝ ╚═════╝ ╚════╝ ╚═╝ ╚═╝ ║
|
|
86
86
|
╚═══════════════════════════════════════════════════════════╝
|
package/README.zh-CN.md
CHANGED
|
@@ -110,7 +110,7 @@ npx ccjk
|
|
|
110
110
|
║ ██████╗ ██████╗ ██╗██╗ ██╗ ║
|
|
111
111
|
║ ██╔════╝██╔════╝ ██║██║ ██╔╝ ║
|
|
112
112
|
║ ██║ ██║ ██║█████╔╝ Claude Code 锦库 ║
|
|
113
|
-
║ ██║ ██║ ██ ██║██╔═██╗ v1.
|
|
113
|
+
║ ██║ ██║ ██ ██║██╔═██╗ v1.3.2 ║
|
|
114
114
|
║ ╚██████╗╚██████╗╚█████╔╝██║ ██╗ ║
|
|
115
115
|
║ ╚═════╝ ╚═════╝ ╚════╝ ╚═╝ ╚═╝ ║
|
|
116
116
|
╚═══════════════════════════════════════════════════════════╝
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as nodeFs from 'node:fs';
|
|
2
|
-
import { existsSync,
|
|
2
|
+
import { existsSync, readFileSync, mkdirSync, writeFileSync, copyFileSync, rmSync, rmdirSync, readdirSync, statSync, unlinkSync, renameSync } from 'node:fs';
|
|
3
3
|
import process$1 from 'node:process';
|
|
4
4
|
import ansis from 'ansis';
|
|
5
5
|
import inquirer from 'inquirer';
|
|
6
6
|
import { dirname, join, basename } from 'pathe';
|
|
7
|
-
import {
|
|
7
|
+
import { parse, stringify } from 'smol-toml';
|
|
8
8
|
import dayjs from 'dayjs';
|
|
9
9
|
import { exec as exec$1 } from 'node:child_process';
|
|
10
10
|
import { homedir, platform as platform$1 } from 'node:os';
|
|
@@ -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 = "1.3.
|
|
23
|
+
const version = "1.3.3";
|
|
24
24
|
const homepage = "https://github.com/miounet11/ccjk";
|
|
25
25
|
|
|
26
26
|
const i18n = i18next.createInstance();
|
package/dist/cli.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import { runCcrStop, runCcrStart, runCcrRestart, runCcrStatus, runCcrUi } from '
|
|
|
10
10
|
import { changeScriptLanguageFeature, configureCodexAiMemoryFeature, configureCodexDefaultModelFeature, configureEnvPermissionFeature, configureAiMemoryFeature, configureDefaultModelFeature, configureMcpFeature, configureApiFeature } from './chunks/features.mjs';
|
|
11
11
|
import process$1 from 'node:process';
|
|
12
12
|
import { x, exec as exec$1 } from 'tinyexec';
|
|
13
|
-
import {
|
|
13
|
+
import { spawn, exec } from 'node:child_process';
|
|
14
14
|
import { promisify } from 'node:util';
|
|
15
15
|
import { pathExists } from 'fs-extra';
|
|
16
16
|
import { ClaudeCodeConfigManager } from './chunks/claude-code-config-manager.mjs';
|
|
@@ -18,12 +18,12 @@ import { writeFile, readFile, mkdir, readdir } from 'node:fs/promises';
|
|
|
18
18
|
import { join as join$1, resolve, dirname } from 'node:path';
|
|
19
19
|
import { randomUUID } from 'node:crypto';
|
|
20
20
|
import ora from 'ora';
|
|
21
|
-
import '
|
|
21
|
+
import 'smol-toml';
|
|
22
22
|
import 'dayjs';
|
|
23
|
+
import 'node:url';
|
|
24
|
+
import 'inquirer-toggle';
|
|
23
25
|
import 'semver';
|
|
24
|
-
import 'smol-toml';
|
|
25
26
|
import 'trash';
|
|
26
|
-
import 'inquirer-toggle';
|
|
27
27
|
import 'i18next';
|
|
28
28
|
import 'i18next-fs-backend';
|
|
29
29
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.3",
|
|
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": {
|
|
@@ -72,6 +72,15 @@
|
|
|
72
72
|
"copilot-alternative",
|
|
73
73
|
"codeium-alternative"
|
|
74
74
|
],
|
|
75
|
+
"sideEffects": false,
|
|
76
|
+
"exports": {
|
|
77
|
+
".": {
|
|
78
|
+
"types": "./dist/index.d.mts",
|
|
79
|
+
"import": "./dist/index.mjs",
|
|
80
|
+
"default": "./dist/index.mjs"
|
|
81
|
+
},
|
|
82
|
+
"./package.json": "./package.json"
|
|
83
|
+
},
|
|
75
84
|
"main": "dist/index.mjs",
|
|
76
85
|
"module": "dist/index.mjs",
|
|
77
86
|
"types": "dist/index.d.mts",
|