-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.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
{
"name": "agrivalue-ai-terminal",
"version": "3.0.0",
"description": "Sicilian agricultural value-chain terminal with Fabric IQ, Foundry IQ, and Copilot MCP integration.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"mcp": "node mcp-server.js",
"mcp:cli": "node scripts/mcp-launcher.mjs",
"verify:mcp": "node scripts/verify-mcp.mjs",
"agent:action": "node scripts/agent-action.mjs",
"build:static": "node scripts/sync-static-data.js && node scripts/inject-config.js",
"prestart": "node scripts/sync-static-data.js",
"test": "node --test tests/*.test.js",
"lint": "eslint .",
"format": "prettier --write \"lib/**\" \"tests/**\" \"server.js\" \"mcp-server.js\" \"scripts/*.{js,mjs}\" \"docs/**\" \"*.md\" \".github/**\" \"eslint.config.js\" \"package.json\" \".prettierrc\" \"AGENTS.md\" \"CLAUDE.md\"",
"format:check": "prettier --check \"lib/**\" \"tests/**\" \"server.js\" \"mcp-server.js\" \"scripts/*.{js,mjs}\" \"docs/**\" \"*.md\" \".github/**\" \"eslint.config.js\" \"package.json\" \".prettierrc\" \"AGENTS.md\" \"CLAUDE.md\"",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"prettier": "^3.5.3"
},
"dependencies": {
"@azure/identity": "^4.2.1",
"@azure/keyvault-secrets": "^4.8.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mssql": "^11.0.1"
}
}