UNPKG

@poupe/theme-builder

Version:

Design token management and theme generation system for Poupe UI framework

82 lines 1.94 kB
{ "name": "@poupe/theme-builder", "version": "0.10.1", "type": "module", "description": "Design token management and theme generation system for Poupe UI framework", "author": "Alejandro Mery <amery@apptly.co>", "license": "MIT", "keywords": [ "color-system", "design-system", "design-tokens", "material-design", "material-design-3", "material-design-2025", "poupe", "theme", "typescript", "ui-framework" ], "repository": { "type": "git", "url": "git+https://github.com/poupe-ui/poupe.git", "directory": "packages/@poupe-theme-builder" }, "bugs": { "url": "https://github.com/poupe-ui/poupe/issues" }, "homepage": "https://poupe.dev", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs" }, "./core": { "types": "./dist/core.d.ts", "import": "./dist/core.mjs" }, "./server": { "types": "./dist/server.d.ts", "import": "./dist/server.mjs" } }, "main": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "dependencies": { "@poupe/material-color-utilities": "^0.3.6", "colord": "^2.9.3", "defu": "^6.1.4", "type-fest": "^4.41.0", "@poupe/css": "^0.3.1" }, "devDependencies": { "@poupe/eslint-config": "^0.6.4", "@types/node": "^20.19.0", "eslint": "^9.28.0", "publint": "^0.3.12", "typescript": "~5.8.3", "unbuild": "3.5.0", "vitest": "^3.2.3", "vue-tsc": "~2.2.10" }, "engines": { "node": ">= 20.19.2", "pnpm": ">= 10.10.0" }, "publishConfig": { "access": "public" }, "scripts": { "dev:prepare": "unbuild --stub", "type-check": "tsc --noEmit", "lint": "env DEBUG=eslint:eslint eslint --fix .", "publint": "pnpx publint", "build": "unbuild", "test": "vitest run", "dev": "vitest watch", "clean": "rm -rf dist node_modules" } }