-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@agentarea/ui-sdk",
"version": "0.0.1",
"description": "Protocol-agnostic agent communication library",
"private": true,
"scripts": {
"build": "pnpm build:styles && tsc --build",
"build:core": "pnpm --filter @agentarea/core build",
"build:react": "pnpm --filter @agentarea/react build",
"build:styles": "pnpm --filter @agentarea/styles build",
"clean": "pnpm -r clean && tsc --build --clean",
"clean:all": "pnpm clean && rm -rf node_modules && pnpm -r exec -- rm -rf node_modules",
"clean:deps": "rm -rf node_modules && pnpm -r exec -- rm -rf node_modules",
"dev": "pnpm -r dev",
"dev:a2a-nextjs": "pnpm --filter @agentarea/styles build:css && turbo run dev --filter=a2a-nextjs",
"turbo:build": "turbo run build",
"turbo:dev": "turbo run dev --parallel",
"turbo:test": "turbo run test",
"turbo:type-check": "turbo run type-check",
"type-check": "tsc --build --dry",
"lint": "echo \"Linting not configured yet\"",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:build": "pnpm build && echo \"Build test passed\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "pnpm build && storybook build",
"publish:packages": "pnpm -r publish --access public",
"publish:dry-run": "pnpm -r publish --dry-run --access public",
"version:patch": "pnpm -r exec -- npm version patch",
"version:minor": "pnpm -r exec -- npm version minor",
"version:major": "pnpm -r exec -- npm version major",
"prepublish": "pnpm build"
},
"keywords": [
"react",
"ui",
"agent",
"a2a",
"acp",
"task",
"protocol-agnostic"
],
"author": "",
"license": "MIT",
"type": "module",
"devDependencies": {
"@agentarea/core": "workspace:*",
"@agentarea/react": "workspace:*",
"@agentarea/styles": "workspace:*",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.13",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitest/ui": "^2.1.8",
"autoprefixer": "^10.4.20",
"chromatic": "^11.20.0",
"jest-axe": "^9.0.0",
"jsdom": "^26.0.0",
"postcss": "^8.5.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"storybook": "^8.6.14",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"turbo": "^2.5.6",
"typescript": "^5.8.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/agentarea-hq/agentarea-ui-sdk.git"
},
"bugs": {
"url": "https://github.com/agentarea-hq/agentarea-ui-sdk/issues"
},
"homepage": "https://github.com/agentarea-hq/agentarea-ui-sdk#readme",
"packageManager": "pnpm@10.12.4"
}