87 lines
2.3 KiB
JSON
87 lines
2.3 KiB
JSON
{
|
|
"name": "@insforge/ui",
|
|
"version": "0.1.7",
|
|
"author": "InsForge",
|
|
"description": "React UI component library, design tokens, and Tailwind preset for InsForge apps",
|
|
"license": "Apache-2.0",
|
|
"homepage": "https://github.com/InsForge/InsForge/tree/main/packages/ui",
|
|
"bugs": {
|
|
"url": "https://github.com/InsForge/InsForge/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/InsForge/InsForge.git",
|
|
"directory": "packages/ui"
|
|
},
|
|
"keywords": [
|
|
"insforge",
|
|
"react",
|
|
"ui",
|
|
"component-library",
|
|
"design-system",
|
|
"tailwindcss",
|
|
"radix-ui",
|
|
"typescript"
|
|
],
|
|
"type": "module",
|
|
"sideEffects": [
|
|
"./dist/styles.css"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"tailwind-preset.js",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./styles.css": "./dist/styles.css",
|
|
"./tailwind-preset": "./tailwind-preset.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json && node -e \"require('fs').copyFileSync('src/styles.css', 'dist/styles.css')\"",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run --config vitest.unit.config.ts",
|
|
"test:component": "vitest run --config vitest.component.config.ts",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
"@radix-ui/react-select": "^2.2.5",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@radix-ui/react-switch": "^1.2.6",
|
|
"@radix-ui/react-toast": "^1.2.18",
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.536.0",
|
|
"tailwind-merge": "^3.3.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"tailwindcss": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"jsdom": "^29.1.1",
|
|
"vitest": "^4.1.6"
|
|
}
|
|
}
|