-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.24 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
{
"name": "rippleui-cli",
"version": "0.1.5",
"description": "shadcn/ui inspired components library for Ripple TS",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "biome check .",
"format": "biome format . --write",
"check": "biome check .",
"prepublishOnly": "npm run build"
},
"bin": {
"rippleui-cli": "dist/cli.js"
},
"keywords": [
"ripple",
"ui",
"components",
"tailwindcss",
"shadcn"
],
"author": "Radosław Kaczmarczyk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/radeqq007/ripple-ui.git"
},
"homepage": "https://github.com/radeqq007/ripple-ui#readme",
"bugs": {
"url": "https://github.com/radeqq007/ripple-ui/issues"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.32.1",
"dependencies": {
"commander": "^15.0.0",
"fs-extra": "^11.3.4",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/node": "^25.5.0",
"@types/prompts": "^2.4.9",
"ark-ripple": "^0.0.4",
"clsx": "^2.1.1",
"lucide-ripple": "^0.0.7",
"ripple": "^0.3.6",
"tailwind-merge": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"peerDependencies": {
"clsx": ">=2",
"tailwind-merge": ">=3"
}
}