-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 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
{
"name": "fugue-cli",
"version": "0.9.0",
"description": "Fugue — AI agents in concert. Conductor-based PMO for your terminal.",
"type": "module",
"main": "dist/index.js",
"bin": {
"fugue": "dist/index.js",
"fugue-mcp": "dist/mcp/server.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"pmo",
"ai",
"agent",
"conductor",
"fugue",
"audit",
"requirements",
"cli",
"slm"
],
"author": "Maskit <dev@maskit.co.kr>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Maskit-AI-Conductor/fugue"
},
"homepage": "https://github.com/Maskit-AI-Conductor/fugue",
"bugs": {
"url": "https://github.com/Maskit-AI-Conductor/fugue/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@inquirer/prompts": "^5.3.0",
"@modelcontextprotocol/sdk": "^1.28.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"js-yaml": "^4.1.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"typescript": "^5.5.0"
}
}