-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.05 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
{
"name": "agent-framework-cli",
"version": "3.6.0",
"description": "Multi-platform AI agent framework — deploy specification-driven agents to GitHub Copilot, Cursor, Claude Code, Windsurf, and the Open Plugins standard in one command",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"agent-cli": "dist/cli.js",
"acli": "dist/cli.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"QUICKSTART.md",
"EXAMPLES.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"cli",
"agents",
"multi-platform",
"vscode",
"copilot",
"github-copilot",
"cursor",
"claude",
"windsurf",
"open-plugins",
"mcp",
"ai",
"framework",
"spec-kit",
"superpowers",
"beads",
"workflow",
"enterprise",
"quality-gates",
"extensions"
],
"author": "Pranjal Pandey",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ipranjal/agent-framework.git"
},
"bugs": {
"url": "https://github.com/ipranjal/agent-framework/issues"
},
"homepage": "https://github.com/ipranjal/agent-framework#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"inquirer": "^8.2.5",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.10",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}