-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "@openhands/extensions",
"version": "0.0.0",
"description": "Public OpenHands extension catalogs for skills, plugins, MCPs, and automation templates.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/OpenHands/extensions"
},
"engines": {
"node": ">=18.20.0"
},
"peerDependencies": {
"lucide-react": ">=0.400.0",
"react": ">=18.0.0",
"react-icons": ">=5.0.0"
},
"files": [
"automations",
"mcps",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
},
"./automations": {
"types": "./automations/index.d.ts",
"import": "./automations/index.js",
"default": "./automations/index.js"
},
"./automations/catalog/*.json": "./automations/catalog/*.json",
"./mcps": {
"types": "./mcps/index.d.ts",
"import": "./mcps/index.js",
"default": "./mcps/index.js"
},
"./mcps/logos": {
"types": "./mcps/logos.d.ts",
"import": "./mcps/logos.js",
"default": "./mcps/logos.js"
},
"./mcps/catalog/*.json": "./mcps/catalog/*.json",
"./package.json": "./package.json"
}
}