@page-speed/agent-everywhere 0.1.0
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/README.md +186 -0
- package/dist/index.cjs +8116 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +2568 -0
- package/dist/index.d.ts +2568 -0
- package/dist/index.js +7978 -0
- package/dist/index.js.map +1 -0
- package/package.json +103 -0
package/package.json
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@page-speed/agent-everywhere",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A composable, vendor-neutral UI engine for AI agent conversations — placements (panel, widget, overlay, fullscreen, split, mobile), rich artifacts (charts, tables, media, forms, multi-step flows), an orchestration manifest + registry, and a streaming WebSocket transport.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"author": "OpenSite",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"sideEffects": [
|
|
9
|
+
"**/*.css"
|
|
10
|
+
],
|
|
11
|
+
"main": "./dist/index.cjs",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.js",
|
|
18
|
+
"require": "./dist/index.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./package.json": "./package.json"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup && node scripts/add-use-client.mjs",
|
|
28
|
+
"dev": "tsup --watch",
|
|
29
|
+
"type-check": "tsc --noEmit",
|
|
30
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"test:watch": "vitest",
|
|
33
|
+
"clean": "rm -rf dist",
|
|
34
|
+
"prepublishOnly": "pnpm clean && pnpm build"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"class-variance-authority": "^0.7.1",
|
|
38
|
+
"clsx": "^2.1.1",
|
|
39
|
+
"tailwind-merge": "^3.3.1"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@radix-ui/react-avatar": ">=1.1.0",
|
|
43
|
+
"@radix-ui/react-collapsible": ">=1.1.0",
|
|
44
|
+
"@radix-ui/react-progress": ">=1.1.0",
|
|
45
|
+
"@radix-ui/react-scroll-area": ">=1.2.0",
|
|
46
|
+
"@radix-ui/react-slot": ">=1.1.0",
|
|
47
|
+
"@radix-ui/react-tooltip": ">=1.1.0",
|
|
48
|
+
"lucide-react": ">=0.460.0 <2",
|
|
49
|
+
"motion": ">=11.0.0",
|
|
50
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
51
|
+
"react-dom": "^18.2.0 || ^19.0.0",
|
|
52
|
+
"recharts": ">=2.13.0 <4"
|
|
53
|
+
},
|
|
54
|
+
"peerDependenciesMeta": {
|
|
55
|
+
"recharts": {
|
|
56
|
+
"optional": true
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@radix-ui/react-avatar": "^1.1.0",
|
|
61
|
+
"@radix-ui/react-collapsible": "^1.1.0",
|
|
62
|
+
"@radix-ui/react-progress": "^1.1.0",
|
|
63
|
+
"@radix-ui/react-scroll-area": "^1.2.0",
|
|
64
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
65
|
+
"@radix-ui/react-tooltip": "^1.1.0",
|
|
66
|
+
"@testing-library/jest-dom": "^6.4.0",
|
|
67
|
+
"@testing-library/react": "^16.0.0",
|
|
68
|
+
"@types/react": "^18.3.0",
|
|
69
|
+
"@types/react-dom": "^18.3.0",
|
|
70
|
+
"@eslint/js": "^9.0.0",
|
|
71
|
+
"eslint": "^9.0.0",
|
|
72
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
73
|
+
"typescript-eslint": "^8.0.0",
|
|
74
|
+
"jsdom": "^25.0.0",
|
|
75
|
+
"lucide-react": "^0.543.0",
|
|
76
|
+
"motion": "^12.0.0",
|
|
77
|
+
"react": "^18.3.1",
|
|
78
|
+
"react-dom": "^18.3.1",
|
|
79
|
+
"recharts": "^2.15.0",
|
|
80
|
+
"tsup": "^8.3.0",
|
|
81
|
+
"typescript": "^5.6.0",
|
|
82
|
+
"vitest": "^2.1.0"
|
|
83
|
+
},
|
|
84
|
+
"publishConfig": {
|
|
85
|
+
"access": "public"
|
|
86
|
+
},
|
|
87
|
+
"packageManager": "pnpm@9.12.0",
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": ">=18.18.0"
|
|
90
|
+
},
|
|
91
|
+
"keywords": [
|
|
92
|
+
"react",
|
|
93
|
+
"ai",
|
|
94
|
+
"agent",
|
|
95
|
+
"chat",
|
|
96
|
+
"conversation",
|
|
97
|
+
"ui",
|
|
98
|
+
"components",
|
|
99
|
+
"artifacts",
|
|
100
|
+
"websocket",
|
|
101
|
+
"streaming"
|
|
102
|
+
]
|
|
103
|
+
}
|