@intlayer/editor-react 5.7.2 → 5.7.4
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/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/editor-react",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Provides the states, contexts, hooks and components to interact with the Intlayer editor for a React application",
|
|
6
6
|
"keywords": [
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"uuid": "^11.1.0",
|
|
56
|
-
"@intlayer/
|
|
57
|
-
"@intlayer/
|
|
58
|
-
"@intlayer/core": "5.7.
|
|
56
|
+
"@intlayer/editor": "5.7.4",
|
|
57
|
+
"@intlayer/config": "5.7.4",
|
|
58
|
+
"@intlayer/core": "5.7.4"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "^22.15.30",
|
|
@@ -73,15 +73,15 @@
|
|
|
73
73
|
"typescript": "^5.8.3",
|
|
74
74
|
"vitest": "^3.2.2",
|
|
75
75
|
"@utils/eslint-config": "1.0.4",
|
|
76
|
-
"@utils/ts-config
|
|
76
|
+
"@utils/ts-config": "1.0.4",
|
|
77
77
|
"@utils/tsup-config": "1.0.4",
|
|
78
|
-
"@utils/ts-config": "1.0.4"
|
|
78
|
+
"@utils/ts-config-types": "1.0.4"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"react": ">=16.0.0",
|
|
82
82
|
"react-dom": ">=16.0.0",
|
|
83
|
-
"@intlayer/config": "5.7.
|
|
84
|
-
"@intlayer/core": "5.7.
|
|
83
|
+
"@intlayer/config": "5.7.4",
|
|
84
|
+
"@intlayer/core": "5.7.4"
|
|
85
85
|
},
|
|
86
86
|
"engines": {
|
|
87
87
|
"node": ">=14.18"
|
|
@@ -90,7 +90,8 @@
|
|
|
90
90
|
"url": "https://github.com/aymericzip/intlayer/issues"
|
|
91
91
|
},
|
|
92
92
|
"scripts": {
|
|
93
|
-
"build": "pnpm
|
|
93
|
+
"build": "pnpm clean & pnpm build:ci",
|
|
94
|
+
"build:ci": "pnpm build:package & pnpm build:types",
|
|
94
95
|
"build:package": "tsup",
|
|
95
96
|
"build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
|
|
96
97
|
"clean": "rimraf ./dist",
|
|
@@ -100,7 +101,6 @@
|
|
|
100
101
|
"prettier": "prettier . --check",
|
|
101
102
|
"prettier:fix": "prettier . --write",
|
|
102
103
|
"process-files": "ts-node src/transpiler/processFilesCLI.ts --dir $npm_config_dir --extension $npm_config_extension --no-node-snapshot",
|
|
103
|
-
"reset": "pnpm clean & pnpm build",
|
|
104
104
|
"test": "vitest run",
|
|
105
105
|
"test:watch": "vitest",
|
|
106
106
|
"typecheck": "tsup --project ./tsconfig.json --noEmit"
|