diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..179ef92 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +dist/ +package-lock.json +node_modules/ \ No newline at end of file diff --git a/index.html b/index.html index 9708f71..0216c13 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@ - + diff --git a/package.json b/package.json new file mode 100644 index 0000000..3758ab4 --- /dev/null +++ b/package.json @@ -0,0 +1,28 @@ +{ + "name": "clear-typography.css", + "version": "2.99.0", + "description": "A minimal and simple css stylesheet, inspired by motherfuckingwebsite", + "main": "scss/clear-typography.scss", + "scripts": { + "scss": "sass --watch scss/clear-typography.scss dist/clear-typography.css", + "scss-no-source-map": "sass --watch --no-source-map scss/clear-typography.scss dist/clear-typography.css", + "minify": "sass --watch scss/clear-typography.scss --style compressed dist/clear-typography.min.css", + "minify-no-source-map": "sass --watch --no-source-map scss/clear-typography.scss --style compressed dist/clear-typography.min.css", + "build": "sass scss/clear-typography.scss dist/clear-typography.css && sass scss/clear-typography.scss --style compressed dist/clear-typography.min.css", + "serve": "http-server ./ & npm run minify" + }, + "repository": { + "type": "git", + "url": "https://git.kobold.cafe/kazhnuz/clear-typograhy.css" + }, + "keywords": [ + "css", + "scss" + ], + "author": "Kazhnuz", + "license": "GPL-3.0-or-later", + "dependencies": { + "http-server": "^14.1.1", + "sass": "^1.78.0" + } +}