@intlayer/chokidar 8.1.1 → 8.1.2
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/assets/installSkills/skills/angular.md +131 -24
- package/dist/assets/installSkills/skills/astro.md +17 -2
- package/dist/assets/installSkills/skills/cli.md +42 -4
- package/dist/assets/installSkills/skills/config.md +53 -3
- package/dist/assets/installSkills/skills/content.md +247 -5
- package/dist/assets/installSkills/skills/next_js.md +93 -13
- package/dist/assets/installSkills/skills/preact.md +54 -20
- package/dist/assets/installSkills/skills/react.md +71 -4
- package/dist/assets/installSkills/skills/remote_content.md +23 -2
- package/dist/assets/installSkills/skills/solid.md +58 -18
- package/dist/assets/installSkills/skills/svelte.md +61 -7
- package/dist/assets/installSkills/skills/usage.md +18 -83
- package/dist/assets/installSkills/skills/vue.md +19 -6
- package/dist/cjs/_virtual/_utils_asset.cjs +1 -1
- package/dist/cjs/build.cjs +51 -0
- package/dist/cjs/buildIntlayerDictionary/buildIntlayerDictionary.cjs +1 -1
- package/dist/cjs/buildIntlayerDictionary/writeDynamicDictionary.cjs +1 -1
- package/dist/cjs/buildIntlayerDictionary/writeFetchDictionary.cjs +1 -1
- package/dist/cjs/buildIntlayerDictionary/writeMergedDictionary.cjs +1 -1
- package/dist/cjs/buildIntlayerDictionary/writeRemoteDictionary.cjs +1 -1
- package/dist/cjs/buildIntlayerDictionary/writeUnmergedDictionary.cjs +1 -1
- package/dist/cjs/cleanOutputDir.cjs +1 -1
- package/dist/cjs/cleanRemovedContentDeclaration.cjs +4 -4
- package/dist/cjs/cli.cjs +21 -0
- package/dist/cjs/createDictionaryEntryPoint/createDictionaryEntryPoint.cjs +1 -1
- package/dist/cjs/createDictionaryEntryPoint/generateDictionaryListContent.cjs +1 -1
- package/dist/cjs/createDictionaryEntryPoint/getBuiltDictionariesPath.cjs +2 -2
- package/dist/cjs/createDictionaryEntryPoint/getBuiltDynamicDictionariesPath.cjs +2 -2
- package/dist/cjs/createDictionaryEntryPoint/getBuiltFetchDictionariesPath.cjs +2 -2
- package/dist/cjs/createDictionaryEntryPoint/getBuiltRemoteDictionariesPath.cjs +2 -2
- package/dist/cjs/createDictionaryEntryPoint/getBuiltUnmergedDictionariesPath.cjs +2 -2
- package/dist/cjs/createType/createModuleAugmentation.cjs +1 -1
- package/dist/cjs/filterInvalidDictionaries.cjs +1 -1
- package/dist/cjs/handleAdditionalContentDeclarationFile.cjs +1 -1
- package/dist/cjs/handleContentDeclarationFileChange.cjs +3 -3
- package/dist/cjs/handleContentDeclarationFileMoved.cjs +1 -1
- package/dist/cjs/handleUnlinkedContentDeclarationFile.cjs +2 -2
- package/dist/cjs/index.cjs +20 -20
- package/dist/cjs/initConfig/index.cjs +1 -1
- package/dist/cjs/installSkills/index.cjs +86 -158
- package/dist/cjs/installSkills/index.cjs.map +1 -1
- package/dist/cjs/listGitFiles.cjs +2 -2
- package/dist/cjs/listProjects.cjs +1 -1
- package/dist/cjs/loadDictionaries/getIntlayerBundle.cjs +1 -1
- package/dist/cjs/loadDictionaries/index.cjs +1 -1
- package/dist/cjs/loadDictionaries/loadContentDeclaration.cjs +1 -1
- package/dist/cjs/loadDictionaries/loadDictionaries.cjs +1 -1
- package/dist/cjs/prepareIntlayer.cjs +4 -4
- package/dist/cjs/transformFiles/transformFiles.cjs +2 -2
- package/dist/cjs/utils/formatter.cjs +1 -1
- package/dist/cjs/utils/index.cjs +46 -0
- package/dist/cjs/watcher.cjs +3 -3
- package/dist/cjs/writeContentDeclaration/processContentDeclarationContent.cjs +2 -2
- package/dist/cjs/writeContentDeclaration/writeContentDeclaration.cjs +2 -2
- package/dist/cjs/writeContentDeclaration/writeJSFile.cjs +3 -3
- package/dist/esm/_virtual/_utils_asset.mjs +1 -1
- package/dist/esm/build.mjs +24 -0
- package/dist/esm/buildIntlayerDictionary/buildIntlayerDictionary.mjs +1 -1
- package/dist/esm/buildIntlayerDictionary/writeDynamicDictionary.mjs +1 -1
- package/dist/esm/buildIntlayerDictionary/writeFetchDictionary.mjs +1 -1
- package/dist/esm/buildIntlayerDictionary/writeMergedDictionary.mjs +1 -1
- package/dist/esm/buildIntlayerDictionary/writeRemoteDictionary.mjs +1 -1
- package/dist/esm/buildIntlayerDictionary/writeUnmergedDictionary.mjs +1 -1
- package/dist/esm/cleanOutputDir.mjs +1 -1
- package/dist/esm/cleanRemovedContentDeclaration.mjs +4 -4
- package/dist/esm/cli.mjs +8 -0
- package/dist/esm/createDictionaryEntryPoint/createDictionaryEntryPoint.mjs +1 -1
- package/dist/esm/createDictionaryEntryPoint/generateDictionaryListContent.mjs +1 -1
- package/dist/esm/createDictionaryEntryPoint/getBuiltDictionariesPath.mjs +2 -2
- package/dist/esm/createDictionaryEntryPoint/getBuiltDynamicDictionariesPath.mjs +2 -2
- package/dist/esm/createDictionaryEntryPoint/getBuiltFetchDictionariesPath.mjs +2 -2
- package/dist/esm/createDictionaryEntryPoint/getBuiltRemoteDictionariesPath.mjs +2 -2
- package/dist/esm/createDictionaryEntryPoint/getBuiltUnmergedDictionariesPath.mjs +2 -2
- package/dist/esm/createType/createModuleAugmentation.mjs +1 -1
- package/dist/esm/filterInvalidDictionaries.mjs +1 -1
- package/dist/esm/handleAdditionalContentDeclarationFile.mjs +1 -1
- package/dist/esm/handleContentDeclarationFileChange.mjs +3 -3
- package/dist/esm/handleContentDeclarationFileMoved.mjs +1 -1
- package/dist/esm/handleUnlinkedContentDeclarationFile.mjs +2 -2
- package/dist/esm/index.mjs +20 -20
- package/dist/esm/initConfig/index.mjs +1 -1
- package/dist/esm/installSkills/index.mjs +86 -157
- package/dist/esm/installSkills/index.mjs.map +1 -1
- package/dist/esm/listGitFiles.mjs +2 -2
- package/dist/esm/listProjects.mjs +1 -1
- package/dist/esm/loadDictionaries/getIntlayerBundle.mjs +1 -1
- package/dist/esm/loadDictionaries/index.mjs +1 -1
- package/dist/esm/loadDictionaries/loadContentDeclaration.mjs +1 -1
- package/dist/esm/loadDictionaries/loadDictionaries.mjs +1 -1
- package/dist/esm/prepareIntlayer.mjs +4 -4
- package/dist/esm/transformFiles/transformFiles.mjs +2 -2
- package/dist/esm/utils/formatter.mjs +1 -1
- package/dist/esm/utils/index.mjs +20 -0
- package/dist/esm/watcher.mjs +3 -3
- package/dist/esm/writeContentDeclaration/processContentDeclarationContent.mjs +2 -2
- package/dist/esm/writeContentDeclaration/writeContentDeclaration.mjs +2 -2
- package/dist/esm/writeContentDeclaration/writeJSFile.mjs +3 -3
- package/dist/types/build.d.ts +29 -0
- package/dist/types/cli.d.ts +8 -0
- package/dist/types/index.d.ts +16 -16
- package/dist/types/installSkills/index.d.ts +42 -2
- package/dist/types/installSkills/index.d.ts.map +1 -1
- package/dist/types/utils/index.d.ts +19 -0
- package/package.json +44 -12
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { buildDictionary } from "./buildIntlayerDictionary/buildIntlayerDictionary.js";
|
|
2
|
-
import { cleanOutputDir } from "./cleanOutputDir.js";
|
|
3
2
|
import { createDictionaryEntryPoint } from "./createDictionaryEntryPoint/createDictionaryEntryPoint.js";
|
|
4
3
|
import { generateDictionaryListContent } from "./createDictionaryEntryPoint/generateDictionaryListContent.js";
|
|
5
4
|
import { getBuiltDictionariesPath } from "./createDictionaryEntryPoint/getBuiltDictionariesPath.js";
|
|
@@ -16,6 +15,22 @@ import { loadContentDeclarations } from "./loadDictionaries/loadContentDeclarati
|
|
|
16
15
|
import { loadLocalDictionaries } from "./loadDictionaries/loadLocalDictionaries.js";
|
|
17
16
|
import { loadRemoteDictionaries } from "./loadDictionaries/loadRemoteDictionaries.js";
|
|
18
17
|
import "./loadDictionaries/index.js";
|
|
18
|
+
import { prepareIntlayer } from "./prepareIntlayer.js";
|
|
19
|
+
import { detectExportedComponentName } from "./writeContentDeclaration/detectExportedComponentName.js";
|
|
20
|
+
import { detectFormatCommand } from "./writeContentDeclaration/detectFormatCommand.js";
|
|
21
|
+
import { DictionaryStatus } from "./writeContentDeclaration/dictionaryStatus.js";
|
|
22
|
+
import { transformJSFile } from "./writeContentDeclaration/transformJSFile.js";
|
|
23
|
+
import { writeContentDeclaration } from "./writeContentDeclaration/writeContentDeclaration.js";
|
|
24
|
+
import { writeJSFile } from "./writeContentDeclaration/writeJSFile.js";
|
|
25
|
+
import "./writeContentDeclaration/index.js";
|
|
26
|
+
import { cleanOutputDir } from "./cleanOutputDir.js";
|
|
27
|
+
import { initIntlayer } from "./init/index.js";
|
|
28
|
+
import { Platform, SKILLS, SKILLS_METADATA, Skill, installSkills } from "./installSkills/index.js";
|
|
29
|
+
import { DiffMode, ListGitFilesOptions, ListGitLinesOptions, listGitFiles, listGitLines } from "./listGitFiles.js";
|
|
30
|
+
import { ListProjectsOptions, listProjects } from "./listProjects.js";
|
|
31
|
+
import { extractDictionaryKey } from "./transformFiles/extractDictionaryKey.js";
|
|
32
|
+
import { ATTRIBUTES_TO_EXTRACT, PackageName, extractIntlayer, generateKey, shouldExtract, transformFiles } from "./transformFiles/transformFiles.js";
|
|
33
|
+
import "./transformFiles/index.js";
|
|
19
34
|
import { fetchDistantDictionaries } from "./fetchDistantDictionaries.js";
|
|
20
35
|
import { isInvalidDictionary } from "./filterInvalidDictionaries.js";
|
|
21
36
|
import { formatDictionaries, formatDictionariesOutput, formatDictionary, formatDictionaryOutput } from "./formatDictionary.js";
|
|
@@ -24,16 +39,8 @@ import { getContentDeclarationFileTemplate } from "./getContentDeclarationFileTe
|
|
|
24
39
|
import { handleAdditionalContentDeclarationFile } from "./handleAdditionalContentDeclarationFile.js";
|
|
25
40
|
import { handleContentDeclarationFileChange } from "./handleContentDeclarationFileChange.js";
|
|
26
41
|
import { handleUnlinkedContentDeclarationFile } from "./handleUnlinkedContentDeclarationFile.js";
|
|
27
|
-
import { initIntlayer } from "./init/index.js";
|
|
28
|
-
import { Platform, SKILLS, SKILLS_METADATA, Skill, installSkills } from "./installSkills/index.js";
|
|
29
42
|
import { listDictionaries, listDictionariesWithStats } from "./listDictionariesPath.js";
|
|
30
|
-
import { DiffMode, ListGitFilesOptions, ListGitLinesOptions, listGitFiles, listGitLines } from "./listGitFiles.js";
|
|
31
|
-
import { ListProjectsOptions, listProjects } from "./listProjects.js";
|
|
32
|
-
import { prepareIntlayer } from "./prepareIntlayer.js";
|
|
33
43
|
import { reduceDictionaryContent } from "./reduceDictionaryContent/reduceDictionaryContent.js";
|
|
34
|
-
import { extractDictionaryKey } from "./transformFiles/extractDictionaryKey.js";
|
|
35
|
-
import { ATTRIBUTES_TO_EXTRACT, PackageName, extractIntlayer, generateKey, shouldExtract, transformFiles } from "./transformFiles/transformFiles.js";
|
|
36
|
-
import "./transformFiles/index.js";
|
|
37
44
|
import { autoDecorateContent } from "./utils/autoDecorateContent.js";
|
|
38
45
|
import { BuildFilesListOptions, buildFilesList } from "./utils/buildFilesList.js";
|
|
39
46
|
import { JSONObject, JsonChunk, assembleJSON, chunkJSON, reconstructFromSingleChunk } from "./utils/chunkJSON.js";
|
|
@@ -52,11 +59,4 @@ import { sortAlphabetically } from "./utils/sortAlphabetically.js";
|
|
|
52
59
|
import { splitTextByLines } from "./utils/splitTextByLine.js";
|
|
53
60
|
import { verifyIdenticObjectFormat } from "./utils/verifyIdenticObjectFormat.js";
|
|
54
61
|
import { buildAndWatchIntlayer, watch } from "./watcher.js";
|
|
55
|
-
import { detectExportedComponentName } from "./writeContentDeclaration/detectExportedComponentName.js";
|
|
56
|
-
import { detectFormatCommand } from "./writeContentDeclaration/detectFormatCommand.js";
|
|
57
|
-
import { DictionaryStatus } from "./writeContentDeclaration/dictionaryStatus.js";
|
|
58
|
-
import { transformJSFile } from "./writeContentDeclaration/transformJSFile.js";
|
|
59
|
-
import { writeContentDeclaration } from "./writeContentDeclaration/writeContentDeclaration.js";
|
|
60
|
-
import { writeJSFile } from "./writeContentDeclaration/writeJSFile.js";
|
|
61
|
-
import "./writeContentDeclaration/index.js";
|
|
62
62
|
export { ATTRIBUTES_TO_EXTRACT, type BuildFilesListOptions, type DictionaryStatus, type DiffMode, type Extension, type Format, type JSONObject, type JsonChunk, type ListGitFilesOptions, type ListGitLinesOptions, type ListProjectsOptions, type PackageName, type ParallelHandle, type Platform, SKILLS, SKILLS_METADATA, type Skill, assembleJSON, autoDecorateContent, buildAndWatchIntlayer, buildDictionary, buildFilesList, chunkJSON, cleanOutputDir, createDictionaryEntryPoint, createModuleAugmentation, createTypes, detectExportedComponentName, detectFormatCommand, extractDictionaryKey, extractIntlayer, fetchDistantDictionaries, formatDictionaries, formatDictionariesOutput, formatDictionary, formatDictionaryOutput, formatLocale, formatPath, generateDictionaryListContent, generateKey, getBuiltDictionariesPath, getBuiltDynamicDictionariesPath, getBuiltFetchDictionariesPath, getBuiltRemoteDictionariesPath, getBuiltUnmergedDictionariesPath, getChunk, getComponentTransformPattern, getComponentTransformPatternSync, getContentDeclarationFileTemplate, getExtensionFromFormat, getFileHash, getFormatFromExtension, getGlobalLimiter, getTaskLimiter, handleAdditionalContentDeclarationFile, handleContentDeclarationFileChange, handleUnlinkedContentDeclarationFile, initIntlayer, installSkills, isInvalidDictionary, listDictionaries, listDictionariesWithStats, listGitFiles, listGitLines, listProjects, loadContentDeclarations, loadDictionaries, loadLocalDictionaries, loadRemoteDictionaries, pLimit, parallelize, parallelizeGlobal, prepareIntlayer, reconstructFromSingleChunk, reduceDictionaryContent, reduceObjectFormat, resolveObjectPromises, runOnce, runParallel, shouldExtract, sortAlphabetically, splitTextByLines, transformFiles, transformJSFile, verifyIdenticObjectFormat, watch, writeContentDeclaration, writeJSFile };
|
|
@@ -9,14 +9,54 @@ declare const SKILLS_METADATA: {
|
|
|
9
9
|
readonly NextJS: "Next.js-specific usage (Server & Client components)";
|
|
10
10
|
readonly Vue: "Vue-specific composables and syntax";
|
|
11
11
|
readonly Preact: "Preact-specific syntax and hooks usage";
|
|
12
|
-
readonly Solid: "Solid
|
|
12
|
+
readonly Solid: "Integrates Intlayer internationalization with SolidJS components. Use when the user asks to \"setup SolidJS i18n\", use the \"useIntlayer\" hook in Solid, or manage locales in a SolidJS application.";
|
|
13
13
|
readonly Svelte: "Svelte-specific stores and syntax";
|
|
14
14
|
readonly Astro: "Astro-specific usage and getIntlayer";
|
|
15
15
|
readonly CLI: "Intlayer CLI commands and usage";
|
|
16
16
|
};
|
|
17
17
|
declare const SKILLS: (keyof typeof SKILLS_METADATA)[];
|
|
18
18
|
type Skill = (typeof SKILLS)[number];
|
|
19
|
-
|
|
19
|
+
/**
|
|
20
|
+
* Configuration for Platform paths to keep code clean.
|
|
21
|
+
*/
|
|
22
|
+
declare const PLATFORM_DIRS: {
|
|
23
|
+
Cursor: string;
|
|
24
|
+
Windsurf: string;
|
|
25
|
+
Trae: string;
|
|
26
|
+
OpenCode: string;
|
|
27
|
+
GitHub: string;
|
|
28
|
+
Claude: string;
|
|
29
|
+
VSCode: string;
|
|
30
|
+
Antigravity: string;
|
|
31
|
+
Augment: string;
|
|
32
|
+
OpenClaw: string;
|
|
33
|
+
Cline: string;
|
|
34
|
+
CodeBuddy: string;
|
|
35
|
+
CommandCode: string;
|
|
36
|
+
Continue: string;
|
|
37
|
+
Crush: string;
|
|
38
|
+
Droid: string;
|
|
39
|
+
Goose: string;
|
|
40
|
+
Junie: string;
|
|
41
|
+
IFlow: string;
|
|
42
|
+
KiloCode: string;
|
|
43
|
+
Kiro: string;
|
|
44
|
+
Kode: string;
|
|
45
|
+
MCPJam: string;
|
|
46
|
+
MistralVibe: string;
|
|
47
|
+
Mux: string;
|
|
48
|
+
OpenHands: string;
|
|
49
|
+
Pi: string;
|
|
50
|
+
Qoder: string;
|
|
51
|
+
Qwen: string;
|
|
52
|
+
RooCode: string;
|
|
53
|
+
TraeCN: string;
|
|
54
|
+
Zencoder: string;
|
|
55
|
+
Neovate: string;
|
|
56
|
+
Pochi: string;
|
|
57
|
+
Other: string;
|
|
58
|
+
};
|
|
59
|
+
type Platform = keyof typeof PLATFORM_DIRS;
|
|
20
60
|
/**
|
|
21
61
|
* Installs skills using the "Agent Skills" directory standard.
|
|
22
62
|
* Standard: <PROJECT_ROOT>/<CONFIG_DIR>/skills/<SKILL_NAME>/SKILL.md
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/installSkills/index.ts"],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/installSkills/index.ts"],"mappings":";cAKa,eAAA;EAAA;;;;;;;;;;;;;;cAiBA,MAAA,gBAEM,eAAA;AAAA,KAEP,KAAA,WAAgB,MAAA;;;;cAUtB,aAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAsCM,QAAA,gBAAwB,aAAA;;;;;cAoDvB,aAAA,GACX,WAAA,UACA,QAAA,EAAU,QAAA,EACV,MAAA,EAAQ,KAAA,OACP,OAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Extension, Format, getExtensionFromFormat, getFormatFromExtension } from "./getFormatFromExtension.js";
|
|
2
|
+
import { autoDecorateContent } from "./autoDecorateContent.js";
|
|
3
|
+
import { BuildFilesListOptions, buildFilesList } from "./buildFilesList.js";
|
|
4
|
+
import { JSONObject, JsonChunk, assembleJSON, chunkJSON, reconstructFromSingleChunk } from "./chunkJSON.js";
|
|
5
|
+
import { formatLocale, formatPath } from "./formatter.js";
|
|
6
|
+
import { getChunk } from "./getChunk.js";
|
|
7
|
+
import { getComponentTransformPattern, getComponentTransformPatternSync } from "./getComponentTransformPattern.js";
|
|
8
|
+
import { getFileHash } from "./getFileHash.js";
|
|
9
|
+
import { parallelize } from "./parallelize.js";
|
|
10
|
+
import { Queue, pLimit } from "./pLimit.js";
|
|
11
|
+
import { getGlobalLimiter, getTaskLimiter, parallelizeGlobal } from "./parallelizeGlobal.js";
|
|
12
|
+
import { reduceObjectFormat } from "./reduceObjectFormat.js";
|
|
13
|
+
import { resolveObjectPromises } from "./resolveObjectPromises.js";
|
|
14
|
+
import { runOnce } from "./runOnce.js";
|
|
15
|
+
import { ParallelHandle, runParallel } from "./runParallel/index.js";
|
|
16
|
+
import { sortAlphabetically } from "./sortAlphabetically.js";
|
|
17
|
+
import { splitTextByLines } from "./splitTextByLine.js";
|
|
18
|
+
import { verifyIdenticObjectFormat } from "./verifyIdenticObjectFormat.js";
|
|
19
|
+
export { BuildFilesListOptions, Extension, Format, JSONObject, JsonChunk, ParallelHandle, Queue, assembleJSON, autoDecorateContent, buildFilesList, chunkJSON, formatLocale, formatPath, getChunk, getComponentTransformPattern, getComponentTransformPatternSync, getExtensionFromFormat, getFileHash, getFormatFromExtension, getGlobalLimiter, getTaskLimiter, pLimit, parallelize, parallelizeGlobal, reconstructFromSingleChunk, reduceObjectFormat, resolveObjectPromises, runOnce, runParallel, sortAlphabetically, splitTextByLines, verifyIdenticObjectFormat };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/chokidar",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.",
|
|
6
6
|
"keywords": [
|
|
@@ -40,6 +40,26 @@
|
|
|
40
40
|
"require": "./dist/cjs/index.cjs",
|
|
41
41
|
"import": "./dist/esm/index.mjs"
|
|
42
42
|
},
|
|
43
|
+
"./watcher": {
|
|
44
|
+
"types": "./dist/types/watcher.d.ts",
|
|
45
|
+
"require": "./dist/cjs/watcher.cjs",
|
|
46
|
+
"import": "./dist/esm/watcher.mjs"
|
|
47
|
+
},
|
|
48
|
+
"./build": {
|
|
49
|
+
"types": "./dist/types/build.d.ts",
|
|
50
|
+
"require": "./dist/cjs/build.cjs",
|
|
51
|
+
"import": "./dist/esm/build.mjs"
|
|
52
|
+
},
|
|
53
|
+
"./cli": {
|
|
54
|
+
"types": "./dist/types/cli.d.ts",
|
|
55
|
+
"require": "./dist/cjs/cli.cjs",
|
|
56
|
+
"import": "./dist/esm/cli.mjs"
|
|
57
|
+
},
|
|
58
|
+
"./utils": {
|
|
59
|
+
"types": "./dist/types/utils/index.d.ts",
|
|
60
|
+
"require": "./dist/cjs/utils/index.cjs",
|
|
61
|
+
"import": "./dist/esm/utils/index.mjs"
|
|
62
|
+
},
|
|
43
63
|
"./package.json": "./package.json"
|
|
44
64
|
},
|
|
45
65
|
"main": "dist/cjs/index.cjs",
|
|
@@ -47,6 +67,18 @@
|
|
|
47
67
|
"types": "dist/types/index.d.ts",
|
|
48
68
|
"typesVersions": {
|
|
49
69
|
"*": {
|
|
70
|
+
"watcher": [
|
|
71
|
+
"./dist/types/watcher.d.ts"
|
|
72
|
+
],
|
|
73
|
+
"build": [
|
|
74
|
+
"./dist/types/build.d.ts"
|
|
75
|
+
],
|
|
76
|
+
"cli": [
|
|
77
|
+
"./dist/types/cli.d.ts"
|
|
78
|
+
],
|
|
79
|
+
"utils": [
|
|
80
|
+
"./dist/types/utils/index.d.ts"
|
|
81
|
+
],
|
|
50
82
|
"package.json": [
|
|
51
83
|
"./package.json"
|
|
52
84
|
]
|
|
@@ -75,18 +107,18 @@
|
|
|
75
107
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
76
108
|
},
|
|
77
109
|
"dependencies": {
|
|
78
|
-
"@intlayer/api": "8.1.
|
|
79
|
-
"@intlayer/config": "8.1.
|
|
80
|
-
"@intlayer/core": "8.1.
|
|
81
|
-
"@intlayer/dictionaries-entry": "8.1.
|
|
82
|
-
"@intlayer/remote-dictionaries-entry": "8.1.
|
|
83
|
-
"@intlayer/types": "8.1.
|
|
84
|
-
"@intlayer/unmerged-dictionaries-entry": "8.1.
|
|
110
|
+
"@intlayer/api": "8.1.2",
|
|
111
|
+
"@intlayer/config": "8.1.2",
|
|
112
|
+
"@intlayer/core": "8.1.2",
|
|
113
|
+
"@intlayer/dictionaries-entry": "8.1.2",
|
|
114
|
+
"@intlayer/remote-dictionaries-entry": "8.1.2",
|
|
115
|
+
"@intlayer/types": "8.1.2",
|
|
116
|
+
"@intlayer/unmerged-dictionaries-entry": "8.1.2",
|
|
85
117
|
"chokidar": "3.6.0",
|
|
86
118
|
"crypto-js": "4.2.0",
|
|
87
119
|
"defu": "6.1.4",
|
|
88
120
|
"fast-glob": "3.3.3",
|
|
89
|
-
"simple-git": "3.
|
|
121
|
+
"simple-git": "3.31.1",
|
|
90
122
|
"ts-morph": "27.0.2",
|
|
91
123
|
"zod-to-ts": "2.0.0"
|
|
92
124
|
},
|
|
@@ -96,15 +128,15 @@
|
|
|
96
128
|
"@utils/ts-config": "1.0.4",
|
|
97
129
|
"@utils/ts-config-types": "1.0.4",
|
|
98
130
|
"@utils/tsdown-config": "1.0.4",
|
|
99
|
-
"rimraf": "6.1.
|
|
131
|
+
"rimraf": "6.1.3",
|
|
100
132
|
"tsdown": "0.20.3",
|
|
101
133
|
"typescript": "5.9.3",
|
|
102
134
|
"vitest": "4.0.18",
|
|
103
135
|
"zod": "4.3.6"
|
|
104
136
|
},
|
|
105
137
|
"peerDependencies": {
|
|
106
|
-
"@intlayer/svelte-transformer": "8.1.
|
|
107
|
-
"@intlayer/vue-transformer": "8.1.
|
|
138
|
+
"@intlayer/svelte-transformer": "8.1.2",
|
|
139
|
+
"@intlayer/vue-transformer": "8.1.2"
|
|
108
140
|
},
|
|
109
141
|
"peerDependenciesMeta": {
|
|
110
142
|
"@intlayer/svelte-transformer": {
|