-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "repo-onboarding-pack",
"version": "1.0.0",
"description": "Hybrid AI tool to generate engineering onboarding packs using Foundry Local + GitHub Copilot SDK + MCP Server",
"type": "module",
"main": "dist/index.js",
"bin": {
"onboard": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"onboard": "tsx src/index.ts",
"serve": "tsx src/server.ts",
"web": "tsx src/server.ts",
"setup": "node -e \"const {platform}=require('os');const {execSync}=require('child_process');if(platform()==='win32'){execSync('powershell -ExecutionPolicy Bypass -File setup.ps1',{stdio:'inherit'})}else{execSync('bash setup.sh',{stdio:'inherit'})}\""
},
"keywords": [
"onboarding",
"mcp",
"foundry-local",
"copilot-sdk",
"agent-skill",
"developer-tools",
"github-copilot"
],
"author": "",
"license": "MIT",
"dependencies": {
"@github/copilot-sdk": "^0.1.23",
"commander": "^12.1.0",
"dotenv": "^17.2.4",
"glob": "^11.0.0",
"ignore": "^6.0.2",
"openai": "^4.70.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0"
}
}