@avallon-labs/mcp 0.0.0

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 ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@avallon-labs/mcp",
3
+ "version": "0.0.0",
4
+ "description": "Avallon API MCP server - generated from OpenAPI",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "bin": {
15
+ "avallon-mcp": "./dist/index.js"
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "generate": "orval",
22
+ "build": "tsup",
23
+ "format": "prettier --write 'src'",
24
+ "format:check": "prettier --check 'src'",
25
+ "lint": "eslint src --max-warnings=0",
26
+ "test": "vitest run",
27
+ "test:watch": "vitest"
28
+ },
29
+ "dependencies": {
30
+ "@modelcontextprotocol/sdk": "^1.0.0",
31
+ "zod": "^3.23.0"
32
+ },
33
+ "devDependencies": {
34
+ "@typescript-eslint/eslint-plugin": "^8.42.0",
35
+ "@typescript-eslint/parser": "^8.42.0",
36
+ "eslint": "^9.34.0",
37
+ "eslint-config-prettier": "^9.1.0",
38
+ "eslint-plugin-prettier": "^5.2.1",
39
+ "orval": "^8.1.0",
40
+ "prettier": "^3.4.2",
41
+ "tsup": "^8.5.1",
42
+ "typescript": "^5.0.0",
43
+ "vitest": "^3.0.0"
44
+ },
45
+ "engines": {
46
+ "node": ">=18"
47
+ },
48
+ "keywords": [
49
+ "avallon",
50
+ "mcp",
51
+ "model-context-protocol",
52
+ "api",
53
+ "voice-ai"
54
+ ],
55
+ "license": "MIT"
56
+ }