1
mirror of https://github.com/jakejarvis/dark-mode.git synced 2025-04-26 11:05:23 -04:00
dark-mode/package.json
dependabot[bot] 7a9db92745
📦 npm: Bump microbundle from 0.14.1 to 0.15.1
Bumps [microbundle](https://github.com/developit/microbundle) from 0.14.1 to 0.15.1.
- [Release notes](https://github.com/developit/microbundle/releases)
- [Changelog](https://github.com/developit/microbundle/blob/master/CHANGELOG.md)
- [Commits](https://github.com/developit/microbundle/compare/v0.14.1...v0.15.1)

---
updated-dependencies:
- dependency-name: microbundle
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-15 03:16:54 +00:00

53 lines
1.3 KiB
JSON

{
"name": "dark-mode-switcheroo",
"version": "0.10.0",
"description": "🌓 Simple CSS theme switching with saved preferences and automatic OS setting detection",
"license": "MIT",
"homepage": "https://jrvs.io/darkmode",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is/"
},
"repository": {
"type": "git",
"url": "https://github.com/jakejarvis/dark-mode.git"
},
"type": "module",
"files": [
"dist"
],
"source": "./src/dark-mode.ts",
"main": "./dist/dark-mode.cjs",
"module": "./dist/dark-mode.esm.js",
"unpkg": "./dist/dark-mode.min.js",
"exports": {
"require": "./dist/dark-mode.cjs",
"import": "./dist/dark-mode.esm.js",
"browser": "./dist/dark-mode.min.js"
},
"types": "./dist/dark-mode.d.ts",
"scripts": {
"build": "microbundle --format cjs,esm,umd --name 'darkMode'",
"lint": "eslint .",
"prepublishOnly": "yarn build"
},
"dependencies": {},
"devDependencies": {
"@jakejarvis/eslint-config": "*",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"microbundle": "^0.15.1",
"typescript": "^4.4.4"
},
"keywords": [
"front-end",
"dark mode",
"theme",
"appearance",
"design",
"css"
]
}