-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"name": "@sikessem/ui",
"private": true,
"type": "module",
"engines": {
"node": ">=22.17",
"pnpm": ">=10.12",
"npm": "prefer using pnpm",
"yarn": "prefer using pnpm"
},
"packageManager": "pnpm@10.12.4",
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/sikessem/ui/issues",
"homepage": "https://sikessem.github.io/packages/ui",
"author": {
"name": "SIGUI Kessé Emmanuel",
"email": "contact@sigui.ci",
"url": "https://sigui.ci"
},
"description": "TailwindCSS components and utilities to design faster.",
"keywords": [
"sikessem",
"tailwindcss",
"plugin",
"utilities",
"componants",
"css",
"typescript"
],
"main": "./dist/index.js",
"types": "./plugin/types/index.d.ts",
"scripts": {
"build": "pnpm -C packages/ui build",
"check": "biome ci .",
"check.format": "biome format .",
"check.lint": "biome check .",
"debug": "pnpm check && pnpm test",
"fix": "pnpm lint && pnpm format",
"format": "biome format --write .",
"inspect": "node --inspect-brk ./node_modules/vite/bin/vite.js --force",
"lint": "biome check --write .",
"test": "vitest run",
"test.ui": "vitest --ui",
"test.cov": "vitest run --coverage",
"watch": "tsm scripts/build.ts --watch"
},
"devDependencies": {
"@biomejs/biome": "^2.1.0",
"@sikessem/ui": "workspace:*",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^24.0.10",
"@vitest/coverage-istanbul": "^3.2.4",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.0",
"plugwind.js": "^0.8.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}