diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b05a1f4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +package-lock.json +npm-debug.log diff --git a/.stylelintrc.yml b/.stylelintrc.yml new file mode 100644 index 0000000..2822ef0 --- /dev/null +++ b/.stylelintrc.yml @@ -0,0 +1,5 @@ +extends: stylelint-config-standard + +rules: + indentation: tab + number-leading-zero: never diff --git a/package.json b/package.json new file mode 100644 index 0000000..b3f6429 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "lounge-theme-solarized", + "version": "1.0.0", + "description": "A simple theme with Solarized colours", + "main": "index.js", + "license": "MIT", + "homepage": "https://github.com/thelounge/lounge-theme-solarized", + "repository": { + "type": "git", + "url": "git+https://github.com/thelounge/lounge-theme-solarized.git" + }, + "keywords": [ + "lounge", + "lounge-theme" + ], + "bugs": { + "url": "https://github.com/thelounge/lounge-theme-solarized/issues" + }, + "devDependencies": { + "stylelint": "^7.11.1", + "stylelint-config-standard": "^16.0.0" + }, + "scripts": { + "test": "stylelint theme.css" + } +}