@automattic/agenttic-ui 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 +488 -0
- package/dist/index.css +1 -0
- package/dist/index.js +2275 -0
- package/package.json +101 -0
package/package.json
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@automattic/agenttic-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "UI components for the Agenttic framework",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./index.css": "./dist/index.css"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"keywords": [
|
|
21
|
+
"agenttic",
|
|
22
|
+
"ui",
|
|
23
|
+
"components",
|
|
24
|
+
"react",
|
|
25
|
+
"typescript",
|
|
26
|
+
"ai",
|
|
27
|
+
"agent"
|
|
28
|
+
],
|
|
29
|
+
"author": "Automattic",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18.0.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@automattic/charts": "^0.14.0",
|
|
36
|
+
"@mdx-js/react": "^3.1.0",
|
|
37
|
+
"@storybook/addon-a11y": "^9.0.18",
|
|
38
|
+
"@storybook/addon-docs": "^9.0.18",
|
|
39
|
+
"@storybook/addon-essentials": "9.0.0-alpha.12",
|
|
40
|
+
"@storybook/addon-links": "^9.0.18",
|
|
41
|
+
"@storybook/addon-onboarding": "^9.0.18",
|
|
42
|
+
"@storybook/blocks": "9.0.0-alpha.17",
|
|
43
|
+
"@storybook/manager-api": "^8.6.14",
|
|
44
|
+
"@storybook/react": "^9.0.18",
|
|
45
|
+
"@storybook/react-vite": "^9.0.18",
|
|
46
|
+
"@storybook/test": "9.0.0-alpha.2",
|
|
47
|
+
"@types/node": "^20.0.0",
|
|
48
|
+
"@types/react": "^18.0.0",
|
|
49
|
+
"@types/react-dom": "^18.0.0",
|
|
50
|
+
"@wordpress/prettier-config": "^4.2.0",
|
|
51
|
+
"@wordpress/scripts": "^27.9.0",
|
|
52
|
+
"autoprefixer": "^10.4.0",
|
|
53
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
54
|
+
"jsdom": "^24.0.0",
|
|
55
|
+
"postcss": "^8.4.0",
|
|
56
|
+
"storybook": "^9.0.18",
|
|
57
|
+
"typescript": "^5.0.0",
|
|
58
|
+
"vite": "^5.0.0",
|
|
59
|
+
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
60
|
+
"vitest": "^1.0.0"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
64
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
65
|
+
"@visx/xychart": "^3.12.0",
|
|
66
|
+
"@wordpress/data": "^10.0.0",
|
|
67
|
+
"@wordpress/element": "^6.24.0",
|
|
68
|
+
"@wordpress/i18n": "^6.1.0",
|
|
69
|
+
"class-variance-authority": "^0.7.1",
|
|
70
|
+
"clsx": "^2.1.1",
|
|
71
|
+
"framer-motion": "^12.23.0",
|
|
72
|
+
"lucide-react": "^0.525.0",
|
|
73
|
+
"react": "^18.0.0",
|
|
74
|
+
"react-dom": "^18.0.0",
|
|
75
|
+
"react-markdown": "^10.1.0",
|
|
76
|
+
"react-textarea-autosize": "^8.5.9",
|
|
77
|
+
"@automattic/agenttic-client": "0.1.0"
|
|
78
|
+
},
|
|
79
|
+
"peerDependencies": {
|
|
80
|
+
"@automattic/charts": "^0.14.0",
|
|
81
|
+
"react": "^18.0.0",
|
|
82
|
+
"react-dom": "^18.0.0"
|
|
83
|
+
},
|
|
84
|
+
"publishConfig": {
|
|
85
|
+
"access": "public",
|
|
86
|
+
"branch": "trunk"
|
|
87
|
+
},
|
|
88
|
+
"scripts": {
|
|
89
|
+
"build": "pnpm run clean && vite build && tsc --emitDeclarationOnly",
|
|
90
|
+
"dev": "vite",
|
|
91
|
+
"clean": "rm -rf dist",
|
|
92
|
+
"type-check": "tsc --noEmit",
|
|
93
|
+
"lint": "wp-scripts lint-js src --ext .ts,.tsx",
|
|
94
|
+
"lint:fix": "wp-scripts lint-js src --ext .ts,.tsx --fix",
|
|
95
|
+
"test": "vitest run",
|
|
96
|
+
"storybook": "storybook dev -p 6006",
|
|
97
|
+
"build-storybook": "storybook build -o storybook-static",
|
|
98
|
+
"i18n:extract": "npx --no-install @wordpress/i18n-command make-pot src --output=languages/a8c-agenttic.pot --domain=a8c-agenttic",
|
|
99
|
+
"i18n:update": "npx --no-install @wordpress/i18n-command make-json languages --domain=a8c-agenttic"
|
|
100
|
+
}
|
|
101
|
+
}
|