-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "iroiro.css",
"version": "2.0.0",
"description": "Stylesheets based on the iroiro colors",
"files": [
"css",
"scss"
],
"main": "css/iroiro.min.css",
"sass": "scss/iroiro.scss",
"style": "css/iroiro.min.css",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build-all",
"build-all": "npm run build-scss && npm run build-css && npm run build-css-min && npm run build-bs-min",
"build-scss": "node scripts/generate.cjs",
"build-css": "sass scss/:css/",
"build-css-min": "sass --style=compressed scss/iroiro.scss css/iroiro.min.css",
"build-bs-min": "sass --style=compressed scss/bootstrap5.scss css/bootstrap5.min.css",
"format-check": "prettier --check .",
"format": "prettier --write .",
"docs-dev": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spenserblack/iroiro.css.git"
},
"keywords": [
"bootstrap",
"css",
"sass"
],
"author": "Spenser Black",
"license": "MIT",
"bugs": {
"url": "https://github.com/spenserblack/iroiro.css/issues"
},
"homepage": "https://github.com/spenserblack/iroiro.css#readme",
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"bootstrap": "^5.2.3",
"iroiro": "0.2.0",
"prettier": "2.8.7",
"sass": "^1.60.0",
"vite": "^4.2.1",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
}
}