1
mirror of https://github.com/jakejarvis/dark-mode.git synced 2025-04-25 14:05:22 -04:00
dark-mode/package.json

47 lines
1.1 KiB
JSON

{
"name": "@jakejarvis/dark-mode",
"version": "0.2.0",
"description": "Super simple CSS theme switching with saved preferences and automatic OS setting detection",
"license": "MIT",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is/"
},
"repository": {
"type": "git",
"url": "https://github.com/jakejarvis/dark-mode.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack --mode production",
"lint": "eslint src/**/*.js",
"prepublishOnly": "run-s lint build"
},
"dependencies": {
"storage-available": "^1.1.0"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.11.1",
"eslint-plugin-prettier": "^3.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"keywords": [
"frontend",
"dark mode",
"css"
]
}