UNPKG

material-chalk

Version:

Generate beautiful colors from namespaces based on color theory

74 lines (73 loc) 1.77 kB
{ "name": "material-chalk", "version": "1.1.1", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", "types": "./dist/cjs/index.d.ts", "exports": { ".": { "import": { "types": "./dist/esm/index.d.mts", "default": "./dist/esm/index.mjs" }, "require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" } } }, "files": [ "dist" ], "scripts": { "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json && npm run rename:esm", "build": "npm run build:cjs && npm run build:esm", "clean": "rimraf dist", "rename:esm": "./scripts/fix-mjs.sh", "lint": "biome check --write", "lint:check": "biome check", "prerelease": "npm run lint:check && npm run clean && npm run build && npm run test -- --run", "release": "jsr publish && npm publish", "test": "vitest" }, "keywords": [ "material", "material-design", "color", "chalk", "terminal", "console", "string", "logging", "log", "xterm" ], "author": "Sebastien Guillemot", "license": "MIT", "description": "Generate beautiful colors from namespaces based on color theory", "repository": { "type": "git", "url": "https://github.com/SebastienGllmt/material-chalk.git" }, "dependencies": { "@material/material-color-utilities": "^0.3.0" }, "peerDependencies": { "chalk": "^5.3.0" }, "peerDependenciesMeta": { "chalk": { "optional": true } }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/node": "^22.10.1", "chalk": "^5.3.0", "rimraf": "^6.0.1", "typescript": "^5.7.2", "vitest": "^2.1.6", "jsr": ">=0.13.2" } }