-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.87 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.87 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
{
"name": "copilot-instructions-mcp",
"version": "1.0.0",
"description": "A collection os security focused prompts and instructions paired with an mcp server for easy integration into GitHub Copilot",
"main": "index.js",
"engine": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"exports": {
"./core": "./src/core/index.js",
"./mcp_prompts": "./src/mcp_prompts/index.js",
"./mcp_resources": "./src/mcp_resources/index.js",
"./mcp_tools": "./src/mcp_tools/index.js",
"./middlewares": "./src/middlewares/index.js"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"threat-model:mermaid-docs": "node skills/threat-model/scripts/mermaid-docs.mjs",
"threat-model:mermaid-validate": "node skills/threat-model/scripts/validate-mermaid.mjs",
"lint": "npm run lint:eslint && npm run lint:markdown",
"lint:fix": "npm run lint:eslint:fix && npm run lint:markdown:fix",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:markdown": "markdownlint .",
"lint:markdown:fix": "markdownlint . --fix"
},
"keywords": [
"robotti",
"mcp",
"modelcontext",
"framework",
"emotional-sync",
"rvct",
"process-corner",
"reflection",
"resonance",
"co-creation",
"nodejs"
],
"author": "Robotti Tech Services",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"amqplib": "^0.10.8",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"mysql2": "^3.14.3",
"sequelize": "^6.37.7",
"ulid": "^3.0.1",
"winston": "^3.17.0",
"winston-transport": "^4.9.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.3.0",
"markdownlint-cli": "^0.48.0",
"nodemon": "^3.1.10"
}
}