-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 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
{
"name": "@openhands/extensions",
"version": "0.0.0",
"description": "Public OpenHands extension catalogs for skills, plugins, integrations, 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",
"integrations",
"LICENSE",
"MIGRATION.md",
"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",
"./integrations": {
"types": "./integrations/index.d.ts",
"import": "./integrations/index.js",
"default": "./integrations/index.js"
},
"./integrations/logos": {
"types": "./integrations/logos.d.ts",
"import": "./integrations/logos.js",
"default": "./integrations/logos.js"
},
"./integrations/catalog/*.json": "./integrations/catalog/*.json",
"./package.json": "./package.json"
}
}