@intlayer/sync-json-plugin 8.1.2 → 8.7.0-canary.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 +41 -32
- package/dist/cjs/loadJSON.cjs +37 -38
- package/dist/cjs/loadJSON.cjs.map +1 -1
- package/dist/cjs/syncJSON-CTiXS5Pk.cjs +2 -0
- package/dist/cjs/syncJSON-CTiXS5Pk.cjs.map +1 -0
- package/dist/cjs/syncJSON.cjs +62 -62
- package/dist/cjs/syncJSON.cjs.map +1 -1
- package/dist/esm/loadJSON.mjs +37 -38
- package/dist/esm/loadJSON.mjs.map +1 -1
- package/dist/esm/syncJSON.mjs +62 -62
- package/dist/esm/syncJSON.mjs.map +1 -1
- package/dist/types/loadJSON.d.ts +5 -9
- package/dist/types/loadJSON.d.ts.map +1 -1
- package/dist/types/syncJSON.d.ts +6 -10
- package/dist/types/syncJSON.d.ts.map +1 -1
- package/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/sync-json-plugin",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0-canary.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A plugin for Intlayer that syncs JSON files to dictionaries.",
|
|
6
6
|
"keywords": [
|
|
@@ -53,40 +53,39 @@
|
|
|
53
53
|
"./package.json"
|
|
54
54
|
],
|
|
55
55
|
"scripts": {
|
|
56
|
-
"_prepublish": "cp -f ../../README.md ./README.md",
|
|
57
56
|
"build": "tsdown --config tsdown.config.ts",
|
|
58
57
|
"build:ci": "tsdown --config tsdown.config.ts",
|
|
59
|
-
"clean": "rimraf ./dist .turbo",
|
|
58
|
+
"clean": "bun --bun rimraf ./dist .turbo",
|
|
60
59
|
"dev": "tsdown --config tsdown.config.ts --watch",
|
|
61
|
-
"format": "biome format . --check",
|
|
62
|
-
"format:fix": "biome format --write .",
|
|
63
|
-
"lint": "biome lint .",
|
|
64
|
-
"lint:fix": "biome lint --write .",
|
|
60
|
+
"format": "bun --bun biome format . --check",
|
|
61
|
+
"format:fix": "bun --bun biome format --write .",
|
|
62
|
+
"lint": "bun --bun biome lint .",
|
|
63
|
+
"lint:fix": "bun --bun biome lint --write .",
|
|
65
64
|
"process-files": "ts-node src/transpiler/processFilesCLI.ts --dir $npm_config_dir --extension $npm_config_extension --no-node-snapshot",
|
|
66
|
-
"prepublish": "
|
|
65
|
+
"prepublish": "cp -f ../../README.md ./README.md",
|
|
67
66
|
"publish": "bun publish || true",
|
|
68
67
|
"publish:canary": "bun publish --access public --tag canary || true",
|
|
69
68
|
"publish:latest": "bun publish --access public --tag latest || true",
|
|
70
|
-
"test": "vitest run",
|
|
71
|
-
"test:watch": "vitest",
|
|
69
|
+
"test": "bun --bun vitest run",
|
|
70
|
+
"test:watch": "bun --bun vitest",
|
|
72
71
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
73
72
|
},
|
|
74
73
|
"dependencies": {
|
|
75
|
-
"@intlayer/chokidar": "8.
|
|
76
|
-
"@intlayer/config": "8.
|
|
77
|
-
"@intlayer/core": "8.
|
|
78
|
-
"@intlayer/types": "8.
|
|
74
|
+
"@intlayer/chokidar": "8.7.0-canary.0",
|
|
75
|
+
"@intlayer/config": "8.7.0-canary.0",
|
|
76
|
+
"@intlayer/core": "8.7.0-canary.0",
|
|
77
|
+
"@intlayer/types": "8.7.0-canary.0",
|
|
79
78
|
"fast-glob": "3.3.3"
|
|
80
79
|
},
|
|
81
80
|
"devDependencies": {
|
|
82
|
-
"@types/node": "25.2
|
|
81
|
+
"@types/node": "25.5.2",
|
|
83
82
|
"@utils/ts-config": "1.0.4",
|
|
84
83
|
"@utils/ts-config-types": "1.0.4",
|
|
85
84
|
"@utils/tsdown-config": "1.0.4",
|
|
86
85
|
"rimraf": "6.1.3",
|
|
87
|
-
"tsdown": "0.
|
|
88
|
-
"typescript": "
|
|
89
|
-
"vitest": "4.
|
|
86
|
+
"tsdown": "0.21.7",
|
|
87
|
+
"typescript": "6.0.2",
|
|
88
|
+
"vitest": "4.1.3"
|
|
90
89
|
},
|
|
91
90
|
"engines": {
|
|
92
91
|
"node": ">=14.18"
|