1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
"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:icons && npm run build:assets",
"build:assets": "cp -r static/* public/",
"build:app": "pug tpl/index.pug -p tpl --out public/",
"build:icons": "node node_modules/iro-icons/scripts/create_sprite.js video volume-2 check trash bookmark cog logout tags lock user chevron-left chevron-right hash x send smile public/icons.svg",
"build:style": "sass --load-path=node_modules src_demo/index.scss public/style.css",
"lint:style": "stylelint \"src/**/*.scss\"",
"fix:style": "stylelint \"src/**/*.scss\" --fix",
"serve": "python -m http.server --bind 127.0.0.1 --directory public 8001"
},
"dependencies": {
"@oddbird/blend": "^0.2.3",
"include-media": "^1.4.9",
"iro-sass": "git+https://git.vulpes.one/git/iro-sass.git"
},
"devDependencies": {
"iro-icons": "git+https://git.vulpes.one/git/iro-icons.git",
"postcss-scss": "^4.0.4",
"pug": "^3.0.0",
"pug-cli": "^1.0.0-alpha6",
"sass": "^1.52.3",
"stylelint": "^14.9.1",
"stylelint-config-sass-guidelines": "^9.0.1",
"svg-sprite": "^1.5.4"
}
}
|