@heroui/agent 0.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +64 -0
- package/LICENSE +21 -0
- package/README.md +205 -0
- package/dist/chart-content-VZ66GD22.js +1391 -0
- package/dist/chunk-3FG5NRTX.js +9 -0
- package/dist/chunk-CU6MPKAJ.js +359 -0
- package/dist/chunk-DW4AQRM5.js +297 -0
- package/dist/chunk-GDDNN2XY.js +954 -0
- package/dist/chunk-RQCTC4JB.js +1084 -0
- package/dist/chunk-TOOT6SZ2.js +74 -0
- package/dist/chunk-VJA52U5P.js +137 -0
- package/dist/component-renderer-IBJDNXSO.js +9780 -0
- package/dist/contracts.d.ts +1293 -0
- package/dist/contracts.js +2325 -0
- package/dist/css/index.css +2 -0
- package/dist/embed-runtime-XOPQY7Z5.js +7254 -0
- package/dist/identity-NYCXY1mT.d.ts +164 -0
- package/dist/index.d.ts +594 -0
- package/dist/index.js +28 -0
- package/dist/interactive-map-surface-67KHT3VB.js +362 -0
- package/dist/next.d.ts +4 -0
- package/dist/next.js +22 -0
- package/dist/server.d.ts +31 -0
- package/dist/server.js +256 -0
- package/package.json +133 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@heroui/agent",
|
|
3
|
+
"version": "0.2.0-beta.1",
|
|
4
|
+
"description": "Embed a hosted HeroUI Agent that turns application data into interactive UI.",
|
|
5
|
+
"homepage": "https://www.heroui.com/agents",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/heroui-inc/heroui-platform/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/heroui-inc/heroui-platform.git",
|
|
12
|
+
"directory": "packages/agent"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"agent",
|
|
16
|
+
"generative-ui",
|
|
17
|
+
"heroui",
|
|
18
|
+
"react"
|
|
19
|
+
],
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"type": "module",
|
|
22
|
+
"sideEffects": [
|
|
23
|
+
"**/*.css"
|
|
24
|
+
],
|
|
25
|
+
"main": "./dist/index.js",
|
|
26
|
+
"module": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"import": "./dist/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./contracts": {
|
|
34
|
+
"types": "./dist/contracts.d.ts",
|
|
35
|
+
"import": "./dist/contracts.js"
|
|
36
|
+
},
|
|
37
|
+
"./next": {
|
|
38
|
+
"types": "./dist/next.d.ts",
|
|
39
|
+
"import": "./dist/next.js"
|
|
40
|
+
},
|
|
41
|
+
"./server": {
|
|
42
|
+
"types": "./dist/server.d.ts",
|
|
43
|
+
"import": "./dist/server.js"
|
|
44
|
+
},
|
|
45
|
+
"./css": {
|
|
46
|
+
"style": "./dist/css/index.css",
|
|
47
|
+
"import": "./dist/css/index.css",
|
|
48
|
+
"default": "./dist/css/index.css"
|
|
49
|
+
},
|
|
50
|
+
"./css/index.css": "./dist/css/index.css",
|
|
51
|
+
"./package.json": "./package.json"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"CHANGELOG.md",
|
|
55
|
+
"LICENSE",
|
|
56
|
+
"README.md",
|
|
57
|
+
"dist",
|
|
58
|
+
"!dist/metafile-esm.json"
|
|
59
|
+
],
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public",
|
|
62
|
+
"tag": "beta"
|
|
63
|
+
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=20"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "rm -rf dist && tsup && pnpm build:styles",
|
|
69
|
+
"build:contracts": "rm -rf dist && tsup --config tsup.contracts.config.ts",
|
|
70
|
+
"build:styles": "node scripts/build-styles.mjs",
|
|
71
|
+
"check:bundle": "node scripts/check-bundle-size.mjs",
|
|
72
|
+
"check:package": "publint && attw --pack . --profile esm-only --exclude-entrypoints css css/index.css",
|
|
73
|
+
"check:styles": "node scripts/build-styles.mjs --check",
|
|
74
|
+
"clean": "rm -rf dist node_modules .turbo",
|
|
75
|
+
"lint": "eslint src/",
|
|
76
|
+
"lint:fix": "eslint src/ --fix",
|
|
77
|
+
"prepublishOnly": "export npm_config_dry_run=false && pnpm --dir ../.. exec turbo run build --filter=@heroui/agent && pnpm lint && pnpm typecheck && pnpm test && pnpm check:package && pnpm check:bundle && pnpm verify:pack",
|
|
78
|
+
"release": "pnpm prepublishOnly && pnpm version:bump",
|
|
79
|
+
"test": "NODE_OPTIONS=\"${NODE_OPTIONS:+$NODE_OPTIONS }--no-experimental-webstorage\" vitest run",
|
|
80
|
+
"typecheck": "tsc --noEmit",
|
|
81
|
+
"version:bump": "bumpp package.json src/contracts/version.ts ../../apps/frontend/src/app/dashboard/agents/_preview/contracts/version.ts --commit \"chore(agent): release heroui-agent-v%s\" --tag \"heroui-agent-v%s\"",
|
|
82
|
+
"verify:pack": "node scripts/verify-packed-package.mjs"
|
|
83
|
+
},
|
|
84
|
+
"dependencies": {
|
|
85
|
+
"@ai-sdk/react": "4.0.12",
|
|
86
|
+
"@gravity-ui/icons": "2.18.0",
|
|
87
|
+
"@heroui/react": "3.2.2",
|
|
88
|
+
"@internationalized/date": "3.12.2",
|
|
89
|
+
"@react-aria/utils": "3.34.1",
|
|
90
|
+
"@react-stately/utils": "3.12.1",
|
|
91
|
+
"@trigger.dev/sdk": "4.5.7",
|
|
92
|
+
"ai": "7.0.11",
|
|
93
|
+
"maplibre-gl": "5.24.0",
|
|
94
|
+
"motion": "12.38.0",
|
|
95
|
+
"react-aria-components": "1.19.0",
|
|
96
|
+
"recharts": "3.8.0",
|
|
97
|
+
"shiki": "4.0.2",
|
|
98
|
+
"streamdown": "2.5.0",
|
|
99
|
+
"zod": "4.3.6"
|
|
100
|
+
},
|
|
101
|
+
"peerDependencies": {
|
|
102
|
+
"react": ">=19.0.0",
|
|
103
|
+
"react-dom": ">=19.0.0"
|
|
104
|
+
},
|
|
105
|
+
"browserslist": [
|
|
106
|
+
"Chrome >= 120",
|
|
107
|
+
"Edge >= 120",
|
|
108
|
+
"Firefox >= 121",
|
|
109
|
+
"Safari >= 17.2"
|
|
110
|
+
],
|
|
111
|
+
"devDependencies": {
|
|
112
|
+
"@arethetypeswrong/cli": "0.18.5",
|
|
113
|
+
"@heroui-pro/config": "workspace:*",
|
|
114
|
+
"@heroui-pro/react": "workspace:*",
|
|
115
|
+
"@heroui/agent-client": "workspace:*",
|
|
116
|
+
"@heroui/agent-ui": "workspace:*",
|
|
117
|
+
"@heroui/styles": "3.2.2",
|
|
118
|
+
"@tailwindcss/cli": "4.2.2",
|
|
119
|
+
"@types/react": "19.2.14",
|
|
120
|
+
"@types/react-dom": "19.2.3",
|
|
121
|
+
"fake-indexeddb": "6.2.5",
|
|
122
|
+
"jsdom": "26.1.0",
|
|
123
|
+
"mermaid": "11.16.0",
|
|
124
|
+
"postcss": "8.5.9",
|
|
125
|
+
"publint": "0.3.21",
|
|
126
|
+
"react": "19.2.6",
|
|
127
|
+
"react-dom": "19.2.6",
|
|
128
|
+
"tailwindcss": "4.2.2",
|
|
129
|
+
"tsup": "8.5.0",
|
|
130
|
+
"typescript": "5.9.3",
|
|
131
|
+
"vitest": "4.1.0"
|
|
132
|
+
}
|
|
133
|
+
}
|