@intlayer/dictionaries-entry 5.7.2-canary.3 → 5.7.3
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 +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/dictionaries-entry",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Provides the entry path for Intlayer dictionaries, solving filesystem retrieval issues for bundlers like Webpack and Rollup.",
|
|
6
6
|
"keywords": [
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"./package.json"
|
|
54
54
|
],
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@intlayer/config": "5.7.
|
|
56
|
+
"@intlayer/config": "5.7.3"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/node": "^22.15.30",
|
|
@@ -66,14 +66,14 @@
|
|
|
66
66
|
"tsup": "^8.5.0",
|
|
67
67
|
"typescript": "^5.8.3",
|
|
68
68
|
"vitest": "^3.2.2",
|
|
69
|
-
"@utils/eslint-config": "1.0.4",
|
|
70
69
|
"@utils/ts-config": "1.0.4",
|
|
71
70
|
"@utils/ts-config-types": "1.0.4",
|
|
72
|
-
"@utils/tsup-config": "1.0.4"
|
|
71
|
+
"@utils/tsup-config": "1.0.4",
|
|
72
|
+
"@utils/eslint-config": "1.0.4"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@intlayer/config": "5.7.
|
|
76
|
-
"intlayer": "5.7.
|
|
75
|
+
"@intlayer/config": "5.7.3",
|
|
76
|
+
"intlayer": "5.7.3"
|
|
77
77
|
},
|
|
78
78
|
"engines": {
|
|
79
79
|
"node": ">=14.18"
|
|
@@ -82,7 +82,8 @@
|
|
|
82
82
|
"url": "https://github.com/aymericzip/intlayer/issues"
|
|
83
83
|
},
|
|
84
84
|
"scripts": {
|
|
85
|
-
"build": "pnpm
|
|
85
|
+
"build": "pnpm clean & pnpm build:ci",
|
|
86
|
+
"build:ci": "pnpm build:package & pnpm build:types",
|
|
86
87
|
"build:package": "tsup",
|
|
87
88
|
"build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
|
|
88
89
|
"clean": "rimraf ./dist",
|
|
@@ -92,7 +93,6 @@
|
|
|
92
93
|
"prettier": "prettier . --check",
|
|
93
94
|
"prettier:fix": "prettier . --write",
|
|
94
95
|
"process-files": "ts-node src/transpiler/processFilesCLI.ts --dir $npm_config_dir --extension $npm_config_extension --no-node-snapshot",
|
|
95
|
-
"reset": "pnpm clean & pnpm build",
|
|
96
96
|
"test": "vitest run",
|
|
97
97
|
"test:watch": "vitest",
|
|
98
98
|
"typecheck": "tsup --project ./tsconfig.json --noEmit"
|