-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.89 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.89 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
{
"name": "@elizaos/ui",
"version": "2.0.0-beta.0",
"description": "Shared UI primitives, composites, and layout utilities for elizaOS apps.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/elizaOS/eliza",
"repository": {
"type": "git",
"url": "https://github.com/elizaOS/eliza.git",
"directory": "packages/ui"
},
"keywords": [
"elizaos",
"ui",
"react",
"design-system"
],
"main": "src/index.ts",
"files": [
"dist"
],
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"prepublishOnly": "bun run build:dist",
"build": "bun run build:dist",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run --config ./vitest.config.ts",
"lint": "bunx @biomejs/biome check src",
"lint:fix": "bunx @biomejs/biome check --write src",
"format": "bunx @biomejs/biome format src",
"format:fix": "bunx @biomejs/biome format --write src",
"build:dist": "rm -rf dist && tsc -p tsconfig.build.json && node ../../scripts/copy-package-assets.mjs packages/ui src/styles && node ../../scripts/prepare-package-dist.mjs packages/ui --compiled-prefix=packages/ui/src",
"pack:dry-run": "cd dist && npm pack --dry-run"
},
"exports": {
".": "./src/index.ts",
"./components/*": "./src/components/*",
"./components/*/*": "./src/components/*/*",
"./components/*/*/*": "./src/components/*/*/*",
"./components/ui/*": "./src/components/ui/*.tsx",
"./components/composites/page-panel": "./src/components/composites/page-panel/index.ts",
"./components/composites/*": "./src/components/composites/*",
"./components/composites/*/*": "./src/components/composites/*/*.tsx",
"./hooks": "./src/hooks/index.ts",
"./hooks/*": "./src/hooks/*",
"./layouts": "./src/layouts/index.ts",
"./layouts/*": "./src/layouts/*",
"./lib/*": "./src/lib/*",
"./styles/*": "./src/styles/*"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.0.0",
"tailwind-merge": "^3.0.0"
},
"devDependencies": {
"@storybook/react": "^10.3.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"storybook": "^10.3.5",
"typescript": "^6.0.0",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public",
"directory": "dist"
}
}