UNPKG

color-mode

Version:

Add color theme systme to your page with color-mode!

38 lines (37 loc) 1.3 kB
{ "name": "color-mode", "version": "0.1.0", "description": "Add color theme systme to your page with color-mode!", "main": "dist/color-mode.umd.js", "module": "dist/color-mode.esm.js", "unpkg": "dist/color-mode.min.js", "scripts": { "build": "npm run lint & npm run build:umd & npm run build:es & npm run build:unpkg", "build:umd": "rollup --config build/rollup.config.js --format umd --file dist/color-mode.umd.js", "build:es": "rollup --config build/rollup.config.js --format es --file dist/color-mode.esm.js", "build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/color-mode.min.js", "lint": "standard src/*.js" }, "repository": { "type": "git", "url": "git+https://github.com/leegeunhyeok/color-mode.git" }, "keywords": [ "themes", "color", "darkmode" ], "author": "Geunhyeok LEE <dev.ghlee@gmail.com> (https://github.com/leegeunhyeok)", "license": "MIT", "bugs": { "url": "https://github.com/leegeunhyeok/color-mode/issues" }, "homepage": "https://github.com/leegeunhyeok/color-mode#readme", "devDependencies": { "rollup": "^1.21.4", "rollup-plugin-buble": "^0.19.8", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-terser": "^5.1.2", "standard": "^14.3.1" } }