intlayer 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",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Manage internationalization i18n in a simple way, through TypeScript, declaration file, declare your multilingual content every where in your code.",
|
|
6
6
|
"keywords": [
|
|
@@ -59,9 +59,9 @@
|
|
|
59
59
|
"./package.json"
|
|
60
60
|
],
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@intlayer/
|
|
63
|
-
"@intlayer/core": "5.7.
|
|
64
|
-
"@intlayer/
|
|
62
|
+
"@intlayer/cli": "5.7.4",
|
|
63
|
+
"@intlayer/core": "5.7.4",
|
|
64
|
+
"@intlayer/config": "5.7.4"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@changesets/changelog-github": "0.5.1",
|
|
@@ -76,15 +76,15 @@
|
|
|
76
76
|
"tsup": "^8.5.0",
|
|
77
77
|
"typescript": "^5.8.3",
|
|
78
78
|
"vitest": "^3.2.2",
|
|
79
|
-
"@utils/eslint-config": "1.0.4",
|
|
80
79
|
"@utils/ts-config": "1.0.4",
|
|
80
|
+
"@utils/eslint-config": "1.0.4",
|
|
81
81
|
"@utils/ts-config-types": "1.0.4",
|
|
82
82
|
"@utils/tsup-config": "1.0.4"
|
|
83
83
|
},
|
|
84
84
|
"peerDependencies": {
|
|
85
|
-
"@intlayer/cli": "5.7.
|
|
86
|
-
"@intlayer/config": "5.7.
|
|
87
|
-
"@intlayer/core": "5.7.
|
|
85
|
+
"@intlayer/cli": "5.7.4",
|
|
86
|
+
"@intlayer/config": "5.7.4",
|
|
87
|
+
"@intlayer/core": "5.7.4"
|
|
88
88
|
},
|
|
89
89
|
"engines": {
|
|
90
90
|
"node": ">=14.18"
|
|
@@ -93,7 +93,8 @@
|
|
|
93
93
|
"url": "https://github.com/aymericzip/intlayer/issues"
|
|
94
94
|
},
|
|
95
95
|
"scripts": {
|
|
96
|
-
"build": "pnpm
|
|
96
|
+
"build": "pnpm clean & pnpm build:ci",
|
|
97
|
+
"build:ci": "pnpm build:package & pnpm build:types",
|
|
97
98
|
"build:package": "tsup",
|
|
98
99
|
"build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
|
|
99
100
|
"clean": "rimraf ./dist",
|
|
@@ -102,7 +103,6 @@
|
|
|
102
103
|
"lint:fix": "eslint . --cache --fix",
|
|
103
104
|
"prettier": "prettier . --check",
|
|
104
105
|
"prettier:fix": "prettier . --write",
|
|
105
|
-
"reset": "pnpm clean & pnpm build",
|
|
106
106
|
"test": "vitest run",
|
|
107
107
|
"test:watch": "vitest",
|
|
108
108
|
"typecheck": "tsup --project ./tsconfig.json --noEmit"
|