-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.72 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.72 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
{
"name": "@ui8kit/core",
"version": "1.5.2",
"description": "Open source React UI components library with Tailwind utility-first and semantic classes",
"homepage": "https://ui.buildy.tw/",
"license": "GPL-3.0",
"author": "ui8kit",
"type": "module",
"keywords": [
"components",
"design",
"frontend",
"library",
"tailwind",
"utility-first",
"semantic",
"react",
"ui",
"ui8kit"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"scan": "bunx ui8kit@latest scan",
"build:r": "bunx ui8kit@latest build",
"publish": "cd packages/registry && npm version patch && npm publish",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:guard": "bun run test:coverage && node scripts/coverage-guard.mjs && node scripts/classname-policy-guard.mjs",
"test:ui": "vitest --ui",
"test:dev": "vite --config vite.test-dev.config.ts --host",
"test:watch": "vitest --watch"
},
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"url": "https://github.com/ui8kit/core.git",
"type": "git"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.525.0",
"react-resizable-panels": "^3.0.6",
"tailwind-merge": "^3.4.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-v8": "1.6.1",
"@vitest/ui": "^1.6.1",
"autoprefixer": "^10.4.24",
"bun-types": "^1.3.9",
"eslint": "^10.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"jsdom": "^24.1.3",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^1.6.1"
},
"publishConfig": {
"access": "public"
}
}