locadex 1.0.166 → 1.0.167
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/CHANGELOG.md +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# locadex
|
|
2
2
|
|
|
3
|
+
## 1.0.167
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`66b5df5`](https://github.com/generaltranslation/gt/commit/66b5df57a69d224345ad0a6191437ba8aca3a19d), [`a13629f`](https://github.com/generaltranslation/gt/commit/a13629f2c5e5a2fcc22c34704507bcc591174825)]:
|
|
8
|
+
- gt@2.14.32
|
|
9
|
+
|
|
3
10
|
## 1.0.166
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":"","sourcesContent":["export {};\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "locadex",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.167",
|
|
4
4
|
"description": "An AI agent for internationalization",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -17,16 +17,12 @@
|
|
|
17
17
|
"commander": "^12.1.0",
|
|
18
18
|
"dotenv": "^16.4.5",
|
|
19
19
|
"open": "^10.1.1",
|
|
20
|
-
"gt": "2.14.
|
|
20
|
+
"gt": "2.14.32"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/jest": "^29.5.14",
|
|
24
24
|
"@types/micromatch": "^4.0.9",
|
|
25
25
|
"@types/node": ">=20.0.0",
|
|
26
|
-
"@typescript-eslint/eslint-plugin": "^8.19.1",
|
|
27
|
-
"@typescript-eslint/parser": "^8.19.1",
|
|
28
|
-
"eslint": "^9.19.0",
|
|
29
|
-
"eslint-plugin-import": "^2.31.0",
|
|
30
26
|
"prettier": "^3.4.2",
|
|
31
27
|
"tsx": "^4.16.5",
|
|
32
28
|
"typescript": "^5.7.3"
|
|
@@ -60,8 +56,6 @@
|
|
|
60
56
|
"build:clean": "sh ../../scripts/clean.sh && pnpm run build",
|
|
61
57
|
"dev": "pnpm run build && node dist/index.js",
|
|
62
58
|
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
|
|
63
|
-
"lint": "eslint .",
|
|
64
|
-
"lint:fix": "eslint . --fix",
|
|
65
59
|
"release": "pnpm run build:release && pnpm publish --access public",
|
|
66
60
|
"release:alpha": "pnpm run build:release && pnpm publish --access public --tag alpha",
|
|
67
61
|
"release:beta": "pnpm run build:release && pnpm publish --access public --tag beta",
|