-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) 路 2.49 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) 路 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@tsed/cli-mcp",
"description": "MCP CLI for Ts.ED.",
"version": "7.0.0-alpha.6",
"type": "module",
"main": "./lib/esm/index.js",
"source": "./src/index.ts",
"module": "./lib/esm/index.js",
"typings": "./lib/types/index.d.ts",
"exports": {
".": {
"cli-tsed-source": "./src/index.ts",
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"default": "./lib/esm/index.js"
}
},
"scripts": {
"build": "yarn build:ts",
"build:ts": "tsc --build tsconfig.esm.json",
"test": "vitest run",
"test:ci": "vitest run --coverage.thresholds.autoUpdate=true"
},
"files": [
"lib",
"templates"
],
"keywords": [
"Ts.ED",
"cli",
"typescript",
"framework",
"rest",
"api",
"express",
"decorators"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@modelcontextprotocol/sdk": ">=1.26.0",
"@tsed/cli-core": "workspace:*",
"@tsed/core": ">=8.21.0",
"@tsed/di": ">=8.21.0",
"@tsed/hooks": ">=8.21.0",
"@tsed/logger": ">=8.0.3",
"@tsed/logger-std": ">=8.0.3",
"@tsed/normalize-path": ">=8.21.0",
"@tsed/openspec": ">=8.21.0",
"@tsed/schema": ">=8.21.0",
"chalk": "^5.3.0",
"change-case": "^5.4.4",
"consolidate": "^1.0.4",
"create-frame": "^1.0.0",
"fs-extra": "^11.2.0",
"globby": "^14.0.2",
"json-schema-to-zod": "^2.8.1",
"read-pkg-up": "^11.0.0",
"rxjs": "^7.8.1",
"semver": "^7.6.3",
"ts-morph": "27.0.0",
"tslib": "^2.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@swc-node/register": "^1.10.9",
"@swc/core": "1.7.26",
"@swc/helpers": "^0.5.13",
"@tsed/typescript": "workspace:*",
"@types/change-case": "^2.3.1",
"@types/consolidate": "0.14.4",
"cross-env": "7.0.3",
"express": "5.1.0",
"typescript": "5.6.2",
"vitest": "4.1.0"
},
"peerDependencies": {
"@tsed/core": ">=8.0.0",
"@tsed/di": ">=8.0.0",
"@tsed/hooks": ">=8.0.0",
"@tsed/logger": ">=8.0.2",
"@tsed/logger-std": ">=8.0.2",
"@tsed/openspec": ">=8.0.0",
"@tsed/schema": ">=8.0.0"
},
"peerDependenciesMeta": {
"@tsed/core": {
"optional": false
},
"@tsed/di": {
"optional": false
},
"@tsed/hooks": {
"optional": false
},
"@tsed/logger": {
"optional": false
},
"@tsed/logger-std": {
"optional": false
},
"@tsed/openspec": {
"optional": false
},
"@tsed/schema": {
"optional": false
}
}
}