forked from picocss/pico
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@yohns/picocss",
"version": "2.2.2",
"description": "Minimal CSS Framework for semantic HTML, updated with enhanced capabilities.",
"authors": [
{
"name": "Lucas Larroche",
"website": "https://github.com/picocss/pico"
},
{
"name": "John Brittain III",
"website": "https://github.com/Yohn/PicoCSS"
}
],
"main": "css/pico.min.css",
"homepage": "https://picocss.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Yohn/PicoCSS.git"
},
"keywords": [
"css",
"css-framework",
"dark-mode",
"dark-theme",
"lightweight",
"minimal",
"minimalist",
"minimalistic",
"native-html",
"scss-framework",
"semantic"
],
"bugs": {
"url": "https://github.com/Yohn/PicoCSS/issues"
},
"scripts": {
"✨": "run-s build",
"build": "run-s start lint \"build:*\" done",
"build-dev": "run-s start lint \"build-dev:*\" done",
"dev": "nodemon -q --watch scss/ --ext scss --exec \"run-s build-dev\"",
"lint": "run-s \"lint:*\"",
"lint:prettier": "prettier --write --log-level error \"scss/**/*.scss\"",
"lint:sort-scss": "postcss --config scss ./scss/**/*.scss --replace",
"build-dev:css": "sass --no-source-map --style expanded --no-error-css scss/:css/",
"build:css": "sass --no-source-map --style expanded --no-error-css scss/:css/",
"build-dev:themes": "node scripts/build-dev",
"build:themes": "node scripts/build-themes",
"build-dev:autoprefix": "postcss --config css --replace css/*.css !css/*.min.css",
"build:autoprefix": "postcss --config css --replace css/*.css !css/*.min.css",
"build-dev:minify": "cleancss -O1 --with-rebase --batch --batch-suffix .min css/*.css !css/*.min.css",
"build:minify": "cleancss -O1 --with-rebase --batch --batch-suffix .min css/*.css !css/*.min.css",
"build-dev:postbuild": "node scripts/copy-docs-css-files",
"build:postbuild": "node scripts/copy-docs-css-files",
"prelint": "echo '[@Yohns/PicoCSS] ✨ Lint'",
"prebuild:css": "echo '[@Yohns/PicoCSS] ✨ Compile'",
"prebuild:themes": "echo '[@Yohns/PicoCSS] ✨ Compile themes'",
"prebuild:autoprefix": "echo '[@Yohns/PicoCSS] ✨ Autoprefix'",
"prebuild:minify": "echo '[@Yohns/PicoCSS] ✨ Minify'",
"start": "echo '\\033[96m[@Yohns/PicoCSS] ✨ Start\\033[0m'",
"done": "echo '\\033[32m[@Yohns/PicoCSS] ✨ Done\\033[0m'"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"caniuse-lite": "^1.0.30001687",
"clean-css-cli": "^5.6.3",
"css-declaration-sorter": "^7.2.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"sass": "^1.82.0"
},
"engines": {
"node": ">=20"
},
"browserslist": [
"defaults"
]
}