-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "droid-mode",
"version": "1.0.0",
"description": "Progressive Code-Mode MCP integration for Factory.ai Droid - access MCP tools without context bloat",
"type": "module",
"main": "dist/cli.js",
"bin": {
"droid-mode": "./dist/cli.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"droid-mode",
"factory.ai",
"mcp",
"model-context-protocol",
"cli",
"ai-agents",
"progressive-disclosure"
],
"author": {
"name": "GitMaxd",
"url": "https://github.com/Gitmaxd"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Gitmaxd/droid-mode.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"citty": "^0.1.6",
"fs-extra": "^11.3.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0"
}
}