@qazuor/claude-code-config 0.4.0 → 0.5.0
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.md +289 -9
- package/dist/bin.cjs +2203 -40
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +2203 -40
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +282 -1
- package/dist/index.d.ts +282 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -6
- package/templates/docs/_registry.json +54 -0
- package/templates/docs/standards/code-standards.md +20 -0
- package/templates/docs/standards/design-standards.md +13 -0
- package/templates/docs/standards/documentation-standards.md +13 -0
- package/templates/docs/standards/performance-standards.md +524 -0
- package/templates/docs/standards/security-standards.md +496 -0
- package/templates/docs/standards/testing-standards.md +15 -0
package/dist/index.cjs
CHANGED
|
@@ -2358,7 +2358,7 @@ var colors = {
|
|
|
2358
2358
|
};
|
|
2359
2359
|
|
|
2360
2360
|
// src/lib/config/reader.ts
|
|
2361
|
-
var CONFIG_FILE = "config.json";
|
|
2361
|
+
var CONFIG_FILE = "qazuor-claude-config.json";
|
|
2362
2362
|
var CLAUDE_DIR = ".claude";
|
|
2363
2363
|
async function readConfig(projectPath) {
|
|
2364
2364
|
const configPath = joinPath(projectPath, CLAUDE_DIR, CONFIG_FILE);
|
|
@@ -2380,7 +2380,7 @@ async function hasConfig(projectPath) {
|
|
|
2380
2380
|
// src/lib/config/writer.ts
|
|
2381
2381
|
init_cjs_shims();
|
|
2382
2382
|
init_fs();
|
|
2383
|
-
var CONFIG_FILE2 = "config.json";
|
|
2383
|
+
var CONFIG_FILE2 = "qazuor-claude-config.json";
|
|
2384
2384
|
var CLAUDE_DIR2 = ".claude";
|
|
2385
2385
|
async function writeConfig(projectPath, config, options) {
|
|
2386
2386
|
const claudePath = joinPath(projectPath, CLAUDE_DIR2);
|