From 62c3ca9a9f51a8bbca93e5e003d5feb052806a2f Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 5 Feb 2022 09:36:00 +0100 Subject: Init --- package.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..2ee3eb8 --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "iro-design", + "version": "1.0.0", + "description": "Standard implementation of the Iro design system", + "main": "src/index.scss", + "author": "Volpeon", + "license": "MIT", + "private": true, + "sideEffects": false, + "scripts": { + "build": "npm run build:app && npm run build:style && npm run build:assets", + "build:assets": "cp -r static/* public/", + "build:app": "pug tpl -p tpl --out public/", + "build:style": "sass --load-path=node_modules src/index.scss >> public/style.css", + "lint:style": "stylelint \"src/style/**/*.scss\"", + "fix:style": "stylelint \"src/style/**/*.scss\" --fix" + }, + "dependencies": { + "include-media": "^1.4.9", + "iro-icons": "git+https://git.vulpes.one/git/iro-icons.git", + "iro-sass": "git+https://git.vulpes.one/git/iro-sass.git" + }, + "devDependencies": { + "postcss-scss": "^4.0.3", + "pug": "^3.0.0", + "pug-cli": "^1.0.0-alpha6", + "sass": "^1.28.0", + "stylelint": "^14.3.0", + "stylelint-config-sass-guidelines": "^9.0.1" + } +} -- cgit v1.3.1