@ash-cloud/ash-ai 0.1.8
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/dist/ash-widget.js +2 -0
- package/dist/ash-widget.js.map +1 -0
- package/dist/embed.cjs +19 -0
- package/dist/embed.cjs.map +1 -0
- package/dist/embed.d.cts +278 -0
- package/dist/embed.d.ts +278 -0
- package/dist/embed.js +16 -0
- package/dist/embed.js.map +1 -0
- package/dist/icons.cjs +156 -0
- package/dist/icons.cjs.map +1 -0
- package/dist/icons.d.cts +1 -0
- package/dist/icons.d.ts +1 -0
- package/dist/icons.js +3 -0
- package/dist/icons.js.map +1 -0
- package/dist/index-DJwpy-R5.js +6797 -0
- package/dist/index.cjs +17502 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +9590 -0
- package/dist/index.d.ts +9590 -0
- package/dist/index.js +17328 -0
- package/dist/index.js.map +1 -0
- package/dist/playground/App.d.ts +2 -0
- package/dist/playground/App.d.ts.map +1 -0
- package/dist/playground/Playground.d.ts +62 -0
- package/dist/playground/Playground.d.ts.map +1 -0
- package/dist/playground/components/ChatInput.d.ts +60 -0
- package/dist/playground/components/ChatInput.d.ts.map +1 -0
- package/dist/playground/components/MessageList.d.ts +28 -0
- package/dist/playground/components/MessageList.d.ts.map +1 -0
- package/dist/playground/components/NormalizedMessageList.d.ts +26 -0
- package/dist/playground/components/NormalizedMessageList.d.ts.map +1 -0
- package/dist/playground/components/SandboxLogsPanel.d.ts +16 -0
- package/dist/playground/components/SandboxLogsPanel.d.ts.map +1 -0
- package/dist/playground/components/Sidebar.d.ts +7 -0
- package/dist/playground/components/Sidebar.d.ts.map +1 -0
- package/dist/playground/components/ToolCallCard.d.ts +9 -0
- package/dist/playground/components/ToolCallCard.d.ts.map +1 -0
- package/dist/playground/components/icons.d.ts +9 -0
- package/dist/playground/components/icons.d.ts.map +1 -0
- package/dist/playground/contexts/ThemeContext.d.ts +9 -0
- package/dist/playground/contexts/ThemeContext.d.ts.map +1 -0
- package/dist/playground/index.d.ts +30 -0
- package/dist/playground/index.d.ts.map +1 -0
- package/dist/playground/main.d.ts +1 -0
- package/dist/playground/main.d.ts.map +1 -0
- package/dist/playground/pages/AgentsPage.d.ts +2 -0
- package/dist/playground/pages/AgentsPage.d.ts.map +1 -0
- package/dist/playground/pages/ChatPage.d.ts +2 -0
- package/dist/playground/pages/ChatPage.d.ts.map +1 -0
- package/dist/playground/pages/SessionsPage.d.ts +2 -0
- package/dist/playground/pages/SessionsPage.d.ts.map +1 -0
- package/dist/playground.css +1 -0
- package/dist/playground.d.ts +18 -0
- package/dist/playground.d.ts.map +1 -0
- package/dist/playground.js +3753 -0
- package/dist/schema-B_CVsJm5.d.cts +1585 -0
- package/dist/schema-B_CVsJm5.d.ts +1585 -0
- package/dist/schema.cjs +254 -0
- package/dist/schema.cjs.map +1 -0
- package/dist/schema.d.cts +3 -0
- package/dist/schema.d.ts +3 -0
- package/dist/schema.js +235 -0
- package/dist/schema.js.map +1 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ash-cloud/ash-ai",
|
|
3
|
+
"version": "0.1.8",
|
|
4
|
+
"description": "Agent SDK Harness - Complete framework for Claude Agent SDK session management",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/conviction-labs/agent-sdk-harness-cloud.git",
|
|
8
|
+
"directory": "harness/packages/ash-ai"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"registry": "https://registry.npmjs.org",
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"type": "module",
|
|
15
|
+
"main": "./dist/index.cjs",
|
|
16
|
+
"module": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js",
|
|
22
|
+
"require": "./dist/index.cjs"
|
|
23
|
+
},
|
|
24
|
+
"./playground": {
|
|
25
|
+
"types": "./dist/playground.d.ts",
|
|
26
|
+
"import": "./dist/playground.js"
|
|
27
|
+
},
|
|
28
|
+
"./embed": {
|
|
29
|
+
"types": "./dist/embed.d.ts",
|
|
30
|
+
"import": "./dist/embed.js"
|
|
31
|
+
},
|
|
32
|
+
"./embed/widget": "./dist/ash-widget.js",
|
|
33
|
+
"./icons": {
|
|
34
|
+
"types": "./dist/icons.d.ts",
|
|
35
|
+
"import": "./dist/icons.js",
|
|
36
|
+
"require": "./dist/icons.cjs"
|
|
37
|
+
},
|
|
38
|
+
"./styles.css": "./dist/playground.css",
|
|
39
|
+
"./schema": {
|
|
40
|
+
"types": "./dist/schema.d.ts",
|
|
41
|
+
"import": "./dist/schema.js",
|
|
42
|
+
"require": "./dist/schema.cjs"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"dist"
|
|
47
|
+
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup && pnpm build:playground && pnpm build:embed",
|
|
50
|
+
"build:playground": "vite build",
|
|
51
|
+
"build:embed": "vite build --config vite.embed.config.ts",
|
|
52
|
+
"dev": "tsup --watch",
|
|
53
|
+
"test": "vitest run --passWithNoTests",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"clean": "rm -rf dist"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.0",
|
|
59
|
+
"@ash-cloud/ash-ui": "workspace:*",
|
|
60
|
+
"@hono/node-server": "^1.13.7",
|
|
61
|
+
"@supabase/supabase-js": "^2.45.0",
|
|
62
|
+
"drizzle-orm": "^0.38.0",
|
|
63
|
+
"hono": "^4.6.14",
|
|
64
|
+
"nanoid": "^5.0.9",
|
|
65
|
+
"postgres": "^3.4.4",
|
|
66
|
+
"wouter": "^3.0.0",
|
|
67
|
+
"zod": "^3.24.1"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"@anthropic-ai/claude-agent-sdk": ">=0.2.0",
|
|
71
|
+
"@vercel/sandbox": ">=1.0.0",
|
|
72
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
73
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
74
|
+
},
|
|
75
|
+
"peerDependenciesMeta": {
|
|
76
|
+
"@vercel/sandbox": {
|
|
77
|
+
"optional": true
|
|
78
|
+
},
|
|
79
|
+
"react": {
|
|
80
|
+
"optional": true
|
|
81
|
+
},
|
|
82
|
+
"react-dom": {
|
|
83
|
+
"optional": true
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"devDependencies": {
|
|
87
|
+
"@hono/zod-openapi": "0.19.10",
|
|
88
|
+
"@scalar/hono-api-reference": "^0.9.32",
|
|
89
|
+
"@vercel/sandbox": "^1.1.6",
|
|
90
|
+
"@types/node": "^20.11.0",
|
|
91
|
+
"@types/react": "^19.0.0",
|
|
92
|
+
"@types/react-dom": "^19.0.0",
|
|
93
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
94
|
+
"autoprefixer": "^10.4.20",
|
|
95
|
+
"drizzle-kit": "^0.30.0",
|
|
96
|
+
"openapi3-ts": "^4.5.0",
|
|
97
|
+
"postcss": "^8.4.49",
|
|
98
|
+
"react": "^19.0.0",
|
|
99
|
+
"react-dom": "^19.0.0",
|
|
100
|
+
"tailwindcss": "^3.4.17",
|
|
101
|
+
"tsup": "^8.3.5",
|
|
102
|
+
"typescript": "^5.7.2",
|
|
103
|
+
"terser": "^5.37.0",
|
|
104
|
+
"vite": "^6.0.7",
|
|
105
|
+
"vite-plugin-dts": "^4.5.0",
|
|
106
|
+
"vitest": "^2.1.8"
|
|
107
|
+
}
|
|
108
|
+
}
|