Spaces:
Paused
Paused
Deploy from GitHub Actions 2025-12-15_20-19-16
Browse files- apps/backend/package.json +7 -6
- apps/backend/tsconfig.json +12 -25
- package-lock.json +0 -0
- package.json +1 -1
- packages/domain-types/package.json +8 -2
- packages/domain-types/tsconfig.json +3 -7
- packages/mcp-types/package.json +2 -2
- packages/mcp-types/tsconfig.json +7 -12
- tsconfig.json +9 -19
apps/backend/package.json
CHANGED
|
@@ -26,8 +26,8 @@
|
|
| 26 |
"@types/js-yaml": "^4.0.9",
|
| 27 |
"@types/pdf-parse": "^1.1.5",
|
| 28 |
"@types/systeminformation": "^3.23.1",
|
| 29 |
-
"@widget-tdc/domain-types": "
|
| 30 |
-
"@widget-tdc/mcp-types": "
|
| 31 |
"@xenova/transformers": "^2.17.2",
|
| 32 |
"axios": "^1.6.5",
|
| 33 |
"cheerio": "^1.0.0",
|
|
@@ -84,11 +84,12 @@
|
|
| 84 |
"@types/uuid": "^9.0.7",
|
| 85 |
"@types/ws": "^8.5.10",
|
| 86 |
"@types/xml2js": "^0.4.14",
|
| 87 |
-
"@typescript-eslint/eslint-plugin": "^
|
| 88 |
-
"@typescript-eslint/parser": "^
|
| 89 |
"esbuild": "^0.24.2",
|
| 90 |
-
"eslint": "^
|
| 91 |
"tsx": "^4.20.6",
|
| 92 |
-
"typescript": "~5.8.
|
|
|
|
| 93 |
}
|
| 94 |
}
|
|
|
|
| 26 |
"@types/js-yaml": "^4.0.9",
|
| 27 |
"@types/pdf-parse": "^1.1.5",
|
| 28 |
"@types/systeminformation": "^3.23.1",
|
| 29 |
+
"@widget-tdc/domain-types": "*",
|
| 30 |
+
"@widget-tdc/mcp-types": "*",
|
| 31 |
"@xenova/transformers": "^2.17.2",
|
| 32 |
"axios": "^1.6.5",
|
| 33 |
"cheerio": "^1.0.0",
|
|
|
|
| 84 |
"@types/uuid": "^9.0.7",
|
| 85 |
"@types/ws": "^8.5.10",
|
| 86 |
"@types/xml2js": "^0.4.14",
|
| 87 |
+
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
| 88 |
+
"@typescript-eslint/parser": "^8.46.4",
|
| 89 |
"esbuild": "^0.24.2",
|
| 90 |
+
"eslint": "^9.39.1",
|
| 91 |
"tsx": "^4.20.6",
|
| 92 |
+
"typescript": "~5.8.3",
|
| 93 |
+
"vitest": "^4.0.8"
|
| 94 |
}
|
| 95 |
}
|
apps/backend/tsconfig.json
CHANGED
|
@@ -1,34 +1,21 @@
|
|
| 1 |
{
|
|
|
|
| 2 |
"compilerOptions": {
|
| 3 |
-
"target": "ES2020",
|
| 4 |
-
"module": "ESNext",
|
| 5 |
-
"moduleResolution": "node",
|
| 6 |
"outDir": "./dist",
|
| 7 |
"rootDir": "./src",
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"skipLibCheck": true,
|
| 11 |
-
"forceConsistentCasingInFileNames": true,
|
| 12 |
-
"resolveJsonModule": true,
|
| 13 |
-
"baseUrl": ".",
|
| 14 |
-
"paths": {
|
| 15 |
-
"@widget-tdc/mcp-types": [
|
| 16 |
-
"../../packages/mcp-types/dist/index.d.ts"
|
| 17 |
-
],
|
| 18 |
-
"@widget-tdc/domain-types": [
|
| 19 |
-
"../../packages/domain-types/dist/index.d.ts"
|
| 20 |
-
]
|
| 21 |
-
}
|
| 22 |
},
|
| 23 |
-
"include": [
|
| 24 |
-
"src/**/*"
|
| 25 |
-
],
|
| 26 |
"exclude": [
|
| 27 |
"node_modules",
|
| 28 |
"dist",
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
-
"
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
| 33 |
]
|
| 34 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"extends": "../../tsconfig.base.json",
|
| 3 |
"compilerOptions": {
|
|
|
|
|
|
|
|
|
|
| 4 |
"outDir": "./dist",
|
| 5 |
"rootDir": "./src",
|
| 6 |
+
"composite": true,
|
| 7 |
+
"noEmit": false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
},
|
| 9 |
+
"include": ["src/**/*"],
|
|
|
|
|
|
|
| 10 |
"exclude": [
|
| 11 |
"node_modules",
|
| 12 |
"dist",
|
| 13 |
+
"tests/**/*",
|
| 14 |
+
"**/*.test.ts",
|
| 15 |
+
"**/*.spec.ts"
|
| 16 |
+
],
|
| 17 |
+
"references": [
|
| 18 |
+
{ "path": "../../packages/domain-types" },
|
| 19 |
+
{ "path": "../../packages/mcp-types" }
|
| 20 |
]
|
| 21 |
+
}
|
package-lock.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
package.json
CHANGED
|
@@ -67,7 +67,7 @@
|
|
| 67 |
"eslint-plugin-security": "^3.0.1",
|
| 68 |
"jsdom": "^27.2.0",
|
| 69 |
"prettier": "^3.6.2",
|
| 70 |
-
"typescript": "~5.8.
|
| 71 |
"vite": "^7.2.4",
|
| 72 |
"vitest": "^4.0.8"
|
| 73 |
},
|
|
|
|
| 67 |
"eslint-plugin-security": "^3.0.1",
|
| 68 |
"jsdom": "^27.2.0",
|
| 69 |
"prettier": "^3.6.2",
|
| 70 |
+
"typescript": "~5.8.3",
|
| 71 |
"vite": "^7.2.4",
|
| 72 |
"vitest": "^4.0.8"
|
| 73 |
},
|
packages/domain-types/package.json
CHANGED
|
@@ -3,11 +3,17 @@
|
|
| 3 |
"version": "1.0.0",
|
| 4 |
"main": "dist/index.js",
|
| 5 |
"types": "dist/index.d.ts",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
"scripts": {
|
| 7 |
"build": "tsc",
|
| 8 |
-
"
|
| 9 |
},
|
| 10 |
"devDependencies": {
|
| 11 |
-
"typescript": "~5.8.
|
| 12 |
}
|
| 13 |
}
|
|
|
|
| 3 |
"version": "1.0.0",
|
| 4 |
"main": "dist/index.js",
|
| 5 |
"types": "dist/index.d.ts",
|
| 6 |
+
"exports": {
|
| 7 |
+
".": {
|
| 8 |
+
"types": "./dist/index.d.ts",
|
| 9 |
+
"default": "./dist/index.js"
|
| 10 |
+
}
|
| 11 |
+
},
|
| 12 |
"scripts": {
|
| 13 |
"build": "tsc",
|
| 14 |
+
"dev": "tsc --watch"
|
| 15 |
},
|
| 16 |
"devDependencies": {
|
| 17 |
+
"typescript": "~5.8.3"
|
| 18 |
}
|
| 19 |
}
|
packages/domain-types/tsconfig.json
CHANGED
|
@@ -1,13 +1,9 @@
|
|
| 1 |
{
|
|
|
|
| 2 |
"compilerOptions": {
|
| 3 |
-
"target": "ES2020",
|
| 4 |
-
"module": "commonjs",
|
| 5 |
-
"declaration": true,
|
| 6 |
"outDir": "./dist",
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"skipLibCheck": true,
|
| 10 |
-
"forceConsistentCasingInFileNames": true
|
| 11 |
},
|
| 12 |
"include": ["src/**/*"],
|
| 13 |
"exclude": ["node_modules", "dist"]
|
|
|
|
| 1 |
{
|
| 2 |
+
"extends": "../../tsconfig.base.json",
|
| 3 |
"compilerOptions": {
|
|
|
|
|
|
|
|
|
|
| 4 |
"outDir": "./dist",
|
| 5 |
+
"rootDir": "./src",
|
| 6 |
+
"composite": true
|
|
|
|
|
|
|
| 7 |
},
|
| 8 |
"include": ["src/**/*"],
|
| 9 |
"exclude": ["node_modules", "dist"]
|
packages/mcp-types/package.json
CHANGED
|
@@ -14,9 +14,9 @@
|
|
| 14 |
"dev": "tsc --watch"
|
| 15 |
},
|
| 16 |
"dependencies": {
|
| 17 |
-
"@widget-tdc/domain-types": "
|
| 18 |
},
|
| 19 |
"devDependencies": {
|
| 20 |
-
"typescript": "~5.8.
|
| 21 |
}
|
| 22 |
}
|
|
|
|
| 14 |
"dev": "tsc --watch"
|
| 15 |
},
|
| 16 |
"dependencies": {
|
| 17 |
+
"@widget-tdc/domain-types": "*"
|
| 18 |
},
|
| 19 |
"devDependencies": {
|
| 20 |
+
"typescript": "~5.8.3"
|
| 21 |
}
|
| 22 |
}
|
packages/mcp-types/tsconfig.json
CHANGED
|
@@ -1,18 +1,13 @@
|
|
| 1 |
{
|
|
|
|
| 2 |
"compilerOptions": {
|
| 3 |
-
"target": "ES2020",
|
| 4 |
-
"module": "commonjs",
|
| 5 |
-
"declaration": true,
|
| 6 |
"outDir": "./dist",
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"skipLibCheck": true,
|
| 10 |
-
"forceConsistentCasingInFileNames": true,
|
| 11 |
-
"baseUrl": ".",
|
| 12 |
-
"paths": {
|
| 13 |
-
"@widget-tdc/domain-types": ["../domain-types/src"]
|
| 14 |
-
}
|
| 15 |
},
|
| 16 |
"include": ["src/**/*"],
|
| 17 |
-
"exclude": ["node_modules", "dist"]
|
|
|
|
|
|
|
|
|
|
| 18 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"extends": "../../tsconfig.base.json",
|
| 3 |
"compilerOptions": {
|
|
|
|
|
|
|
|
|
|
| 4 |
"outDir": "./dist",
|
| 5 |
+
"rootDir": "./src",
|
| 6 |
+
"composite": true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
},
|
| 8 |
"include": ["src/**/*"],
|
| 9 |
+
"exclude": ["node_modules", "dist"],
|
| 10 |
+
"references": [
|
| 11 |
+
{ "path": "../domain-types" }
|
| 12 |
+
]
|
| 13 |
}
|
tsconfig.json
CHANGED
|
@@ -1,22 +1,12 @@
|
|
| 1 |
{
|
| 2 |
-
"
|
| 3 |
-
"references": [
|
| 4 |
-
{
|
| 5 |
-
"path": "apps/backend"
|
| 6 |
-
},
|
| 7 |
-
{
|
| 8 |
-
"path": "apps/matrix-frontend"
|
| 9 |
-
},
|
| 10 |
-
{
|
| 11 |
-
"path": "packages/domain-types"
|
| 12 |
-
},
|
| 13 |
-
{
|
| 14 |
-
"path": "packages/mcp-types"
|
| 15 |
-
}
|
| 16 |
-
],
|
| 17 |
"compilerOptions": {
|
| 18 |
-
"composite": true,
|
| 19 |
-
"skipLibCheck": true,
|
| 20 |
"noEmit": true
|
| 21 |
-
}
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
{
|
| 2 |
+
"extends": "./tsconfig.base.json",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
"compilerOptions": {
|
|
|
|
|
|
|
| 4 |
"noEmit": true
|
| 5 |
+
},
|
| 6 |
+
"files": [],
|
| 7 |
+
"references": [
|
| 8 |
+
{ "path": "packages/domain-types" },
|
| 9 |
+
{ "path": "packages/mcp-types" },
|
| 10 |
+
{ "path": "apps/backend" }
|
| 11 |
+
]
|
| 12 |
+
}
|