UNPKG

adopted-style-sheets

Version:

This library implements functions to use the adopted style of web components for multiple themes.

89 lines 2.55 kB
{ "name": "adopted-style-sheets", "version": "1.1.9-rc.19", "license": "EUPL-1.2", "description": "This library implements functions to use the adopted style of web components for multiple themes.", "keywords": [ "webcomponents", "style", "css", "theme", "accessibility", "custom", "elements", "w3c", "adopted", "style", "sheets" ], "author": { "email": "github@martinoppitz.com", "name": "Martin Oppitz", "url": "https://martinoppitz.com" }, "contributors": [ { "email": "github@martinoppitz.com", "name": "Martin Oppitz", "url": "https://martinoppitz.com" } ], "dependencies": { "loglevel": "1.9.2" }, "devDependencies": { "@commitlint/cli": "19.8.1", "@commitlint/config-conventional": "19.8.1", "@eslint/eslintrc": "3.3.1", "@eslint/js": "9.27.0", "@swc/core": "1.11.29", "@types/mocha": "10.0.10", "@typescript-eslint/eslint-plugin": "8.33.0", "@typescript-eslint/parser": "8.33.0", "eslint": "9.27.0", "husky": "9.1.7", "knip": "5.59.0", "mocha": "11.5.0", "npm-check-updates": "18.0.1", "npm-run-all2": "8.0.4", "prettier": "3.5.3", "rimraf": "6.0.1", "tsup": "8.5.0", "typescript": "5.8.3", "unbuild": "3.5.0" }, "sideEffects": false, "type": "module", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "pnpm build:unbuild", "build:tsup": "tsup src/index.ts --clean --minify --dts --format cjs,esm --out-dir dist", "build:unbuild": "unbuild", "clean": "git clean -f -d -X", "clean:branches": "git branch --merged | grep -v \\* | xargs git branch -D", "format": "prettier --check src", "lint": "tsc --noemit && eslint src", "ncu:major": "ncu", "ncu:minor": "ncu -t minor -u", "ncu:patch": "ncu -t patch -u", "prepare:husky": "rimraf .husky && husky && npm-run-all2 prepare:husky:*", "prepare:-husky:commitlint": "echo \"npx commitlint --edit $1\" >> .husky/commit-msg", "prepare:husky:format": "echo \"pnpm format\" >> .husky/pre-push", "prepare:husky:lint": "echo \"pnpm lint\" >> .husky/pre-commit", "prepare:-husky:unused": "echo \"pnpm unused\" >> .husky/pre-push", "unused": "knip", "update": "pnpm ncu:minor && pnpm ncu:major" } }