-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.63 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
{
"name": "sibujs-ui",
"version": "1.4.2",
"description": "UI components for SibuJS — Tailwind-styled, signal-driven, zero VDOM.",
"keywords": [
"sibujs",
"ui",
"components",
"tailwind",
"shadcn"
],
"homepage": "https://github.com/hexplus/sibujs-ui#readme",
"bugs": {
"url": "https://github.com/hexplus/sibujs-ui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexplus/sibujs-ui.git"
},
"license": "MIT",
"author": "hexplus (https://github.com/hexplus)",
"type": "module",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src/themes",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./themes/*": "./src/themes/*"
},
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist",
"lint": "biome check --max-diagnostics=500 src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"test": "vitest",
"publish:npm": "node publish.mjs",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"sibujs": "^3.2.0"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@types/node": "^25.5.0",
"jsdom": "^25.0.0",
"lucide": "^1.7.0",
"sibujs": "^3.3.0",
"tsup": "^8.5.1",
"typescript": "^5.8.3",
"vitest": "^4.1.8"
}
}