UNPKG

@dbs-portal/core-theme

Version:

Theme management, styling utilities, and design tokens for DBS Portal

86 lines (85 loc) 2.23 kB
{ "name": "@dbs-portal/core-theme", "version": "1.0.0", "description": "Theme management, styling utilities, and design tokens for DBS Portal", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./theme": { "import": "./dist/theme.js", "types": "./dist/theme.d.ts" }, "./tokens": { "import": "./dist/tokens.js", "types": "./dist/tokens.d.ts" }, "./tailwind-config": { "import": "./dist/tailwind-config.js", "types": "./dist/tailwind-config.d.ts" }, "./css-utils": { "import": "./dist/css-utils.js", "types": "./dist/css-utils.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "tsc && vite build", "dev": "tsc --watch", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "biome lint src", "format": "biome format src --write", "type-check": "tsc --noEmit", "clean": "rm -rf dist", "migrate-build-config": "node ../../tools/build/scripts/migrate-package.mjs", "verify-build-config": "node ../../tools/build/scripts/verify-build-config.mjs" }, "dependencies": { "@dbs-portal/core-shared": "1.0.0", "antd": "^5.26.6", "glob": "^11.0.3", "tailwindcss": "^4.0.6" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@dbs-portal/tool-build": "1.0.0", "@dbs-portal/tool-testing": "1.0.0", "@dbs-portal/tool-tsconfig": "1.0.0", "@types/node": "^22.10.2", "typescript": "^5.7.2", "vite": "^6.1.0", "vitest": "^3.0.5" }, "keywords": [ "theme", "design-tokens", "styling", "tailwind", "antd", "dbs-portal" ], "author": "DBS Portal Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/your-org/dbs-portal.git", "directory": "packages/core/theme" }, "bugs": { "url": "https://github.com/your-org/dbs-portal/issues" }, "homepage": "https://github.com/your-org/dbs-portal#readme", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }