theme-o-rama
Version:
A TypeScript library for dynamic theme management in react + shadcn + tailwind applications
81 lines (80 loc) • 2.24 kB
JSON
{
"name": "theme-o-rama",
"version": "0.4.0",
"description": "A TypeScript library for dynamic theme management in react + shadcn + tailwind applications",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./themes.css": "./dist/themes.css",
"./tailwind-v4-theme.css": "./dist/tailwind-v4-theme.css",
"./tailwind.config.js": "./dist/tailwind.config.js",
"./schema.json": "./dist/schema.json"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bash build.sh",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write .",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"theme",
"dynamic",
"typescript",
"react",
"ui",
"styling",
"shadcn"
],
"author": "dkackman",
"repository": {
"type": "git",
"url": "git+https://github.com/dkackman/Theme-o-rama.git"
},
"homepage": "https://dkackman.github.io/Theme-o-rama",
"bugs": {
"url": "https://github.com/dkackman/Theme-o-rama/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.38.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.1.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/ui": "^4.0.10",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"jsdom": "^27.2.0",
"prettier": "^3.6.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.36.0",
"typescript-json-schema": "^0.65.1",
"vitest": "^4.0.10"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
}
}