-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.81 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.81 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "fulldev-ui",
"type": "module",
"version": "0.9.0",
"description": "Open-source Astro UI components and blocks",
"homepage": "https://ui.full.dev",
"bugs": "https://github.com/fulldotdev/ui/issues",
"license": "MIT",
"author": "Fulldev <contact@full.dev> (https://full.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/fulldotdev/ui.git"
},
"keywords": [
"astro-integration",
"withastro",
"astro",
"astro-component",
"astro-components",
"astro-ui",
"components",
"ui",
"astro-components",
"component-registry",
"ui-components",
"pagebuilder",
"tailwind",
"astro-blocks",
"content-primitives",
"fulldev",
"fulldev-ui"
],
"files": [
"CHANGELOG.md",
"LICENCE",
"README.md",
"registry.json",
"public/r",
"src/components/blocks",
"src/components/ui",
"src/lib",
"src/styles/global.css"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.12.1",
"scripts": {
"astro": "astro",
"dev": "pnpm stop && astro dev --host 127.0.0.1 --port 4321",
"start": "pnpm dev",
"stop": "lsof -tiTCP:4321 -sTCP:LISTEN | xargs kill 2>/dev/null || true",
"preview": "pnpm stop && pnpm build && astro preview --host 127.0.0.1 --port 4321",
"typecheck": "astro check",
"check": "pnpm format:check && pnpm typecheck",
"build": "astro build",
"build:prod": "pnpm check && pnpm registry:build && pnpm build",
"build:preview": "pnpm registry:build && pnpm build && astro preview --host 127.0.0.1 --port 4321",
"build:test": "pnpm check && pnpm registry:build && pnpm build && astro preview --host 127.0.0.1 --port 4321",
"registry:build": "shadcn build && pnpm format:write --log-level warn",
"registry:check": "pnpm registry:build && git diff --exit-code -- registry.json public/r",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"release": "changeset version && pnpm install --lockfile-only",
"release:publish": "pnpm registry:check && pnpm build && changeset publish"
},
"dependencies": {
"@astrojs/mdx": "^5.0.6",
"@astrojs/sitemap": "^3.7.2",
"@data-slot/accordion": "^0.2.166",
"@data-slot/alert-dialog": "^0.2.166",
"@data-slot/collapsible": "^0.2.166",
"@data-slot/combobox": "^0.2.166",
"@data-slot/command": "^0.2.166",
"@data-slot/core": "^0.2.166",
"@data-slot/dialog": "^0.2.166",
"@data-slot/dropdown-menu": "^0.2.166",
"@data-slot/hover-card": "^0.2.166",
"@data-slot/navigation-menu": "^0.2.166",
"@data-slot/popover": "^0.2.166",
"@data-slot/radio-group": "^0.2.166",
"@data-slot/select": "^0.2.166",
"@data-slot/slider": "^0.2.166",
"@data-slot/switch": "^0.2.166",
"@data-slot/tabs": "^0.2.166",
"@data-slot/toggle": "^0.2.166",
"@data-slot/tooltip": "^0.2.166",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@lexingtonthemes/seo": "^0.2.0",
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.3.3",
"astro-favicons": "^3.1.6",
"astro-live-code": "^0.0.6",
"astro-robots-txt": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel": "^8.6.0",
"lucide-static": "^1.16.0",
"shadcn": "^4.7.0",
"simple-icons": "^16.19.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"prettier": "3.8.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"sharp": "^0.34.5"
}
}