-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.17 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
{
"name": "agentui-wc",
"version": "0.1.151",
"type": "module",
"description": "AI-First Web Components Framework - 50 Material Design 3 components optimized for AI agents",
"main": "dist/agentui.esm.js",
"module": "dist/agentui.esm.js",
"types": "dist/agentui.d.ts",
"customElements": "custom-elements.json",
"files": [
"dist/",
"custom-elements.json",
"AGENTS.md",
"AGENTS_DEV.md",
"SKILL.md",
"llms.txt",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/agentui.esm.js",
"types": "./dist/agentui.d.ts"
},
"./css": "./dist/agentui.css",
"./components/*": "./dist/components/*.js",
"./styles/*": "./dist/styles/*"
},
"scripts": {
"dev": "bun server.js",
"test": "bun test tests/core tests/components tests/theme-toggle.test.js",
"test:dist": "for f in tests/components/au-*.test.js; do bun test --preload ./tests/setup-dom.js --preload ./tests/preload-dist.js \"$f\"; done",
"test:isolated": "bun run scripts/test-isolated.js",
"test:e2e": "bun test tests/e2e",
"test:full": "bun run test:isolated && bun run test:e2e",
"test:all": "bun test",
"build": "bun run build:framework && bun run build:app",
"build:framework": "bun run scripts/build-framework.js",
"build:app": "bun run scripts/build-app.js",
"prepublishOnly": "bun run test:isolated && bun run build && echo '✅ All checks passed - ready to publish'"
},
"keywords": [
"ai-agents",
"ai-first",
"web-components",
"material-design-3",
"ui-framework",
"light-dom",
"zero-dependencies",
"accessibility",
"wcag",
"custom-elements",
"md3",
"design-system"
],
"repository": {
"type": "git",
"url": "https://github.com/GiuseppeScottoLavina/AgentUI.git"
},
"homepage": "https://giuseppescottolavina.github.io/AgentUI/",
"bugs": {
"url": "https://github.com/GiuseppeScottoLavina/AgentUI/issues"
},
"author": "Giuseppe Scotto Lavina",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"bun-types": "^1.3.9",
"jsdom": "^27.4.0",
"linkedom": "^0.18.12",
"puppeteer-core": "^24.37.3"
}
}