forked from intentui/intentui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.44 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.44 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
{
"name": "intentui",
"author": "irsyadadl",
"version": "3.0.0",
"private": true,
"scripts": {
"first-time": "npm install && npm run build && next dev",
"lint": "biome check",
"build:stubs": "rm -rf public/stubs && node --import tsx src/scripts/build-stubs.ts",
"build:llms": "node --import tsx src/scripts/generate-llms.ts",
"build:search": "node --import tsx src/scripts/generate-search.ts",
"build:icons": "node --import tsx src/scripts/generate-icon-metadata.ts",
"prebuild": "npx fumadocs-mdx && npm run build:icons && npm run build:search && npm run build:llms && npm run registry:generate && node --import tsx src/scripts/extract-components-from-registry.ts && npm run build:stubs",
"cuc": "node --import tsx src/scripts/check-use-client.ts",
"cdc": "node --import tsx src/scripts/check-duplicated-classes.ts",
"registry:generate": "node --import tsx src/scripts/generate-registry.ts && npx shadcn build && node --import tsx src/scripts/cleanup-staged.ts",
"r": "npm run build:search && npm run registry:generate",
"gr": "node --import tsx src/scripts/generate-release-notes.ts",
"dev": "next dev --turbopack",
"build": "_FUMADOCS_MDX=1 next build --webpack",
"format": "biome lint --fix && biome check --write",
"format:unsafe": "biome check --unsafe --write",
"start": "next start",
"preview": "npm run build && next start",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"biome lint --fix && biome check --write"
]
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@intentui/icons": "^1.11.0",
"@shikijs/rehype": "^3.22.0",
"@shikijs/transformers": "^3.22.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"@wandry/analytics-sdk": "^1.16.0",
"culori": "^4.0.2",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"fumadocs-core": "^16.5.0",
"fumadocs-mdx": "^14.2.6",
"input-otp": "^1.4.2",
"motion": "^12.31.0",
"next": "^16.2.2",
"next-themes": "^0.4.6",
"ntcjs": "^1.1.3",
"react": "^19.2.4",
"react-aria-components": "^1.15.1",
"react-dom": "^19.2.4",
"react-intersection-observer": "^10.0.2",
"react-resizable-panels": "^4.5.8",
"recharts": "^3.7.0",
"rehype-stringify": "^10.0.1",
"scroll-into-view-if-needed": "^3.1.0",
"shadcn": "^3.8.1",
"sharp": "^0.34.5",
"shiki": "^3.22.0",
"sonner": "^2.0.7",
"tailwind-variants": "^3.2.2",
"tailwindcss-react-aria-components": "^2.0.1",
"tw-animate-css": "^1.4.0",
"use-debounce": "^10.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/culori": "^4.0.1",
"@types/mdx": "^2.0.13",
"@types/node": "^25.2.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.9.19",
"encoding": "^0.1.13",
"postcss": "^8.5.6",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"overrides": {
"shadcn": {
"zod": "3.25.76"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/intentui/intentui.git"
},
"trustedDependencies": [
"es5-ext",
"esbuild",
"sharp"
]
}