-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 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
{
"name": "smolcss",
"version": "0.1.0",
"description": "SmolCSS layouts and components",
"main": "index.html",
"scripts": {
"color-tokens": "a11y-color-tokens --outputDirPath='src/sass' --customPropertiesFormat='root' --compatibilityDocsPath='./'",
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass:public/css",
"build:eleventy": "eleventy",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map",
"start": "npm-run-all color-tokens build:sass --parallel watch:*",
"build": "npm-run-all color-tokens build:sass build:eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/smolcss.git"
},
"author": "5t3ph",
"license": "ISC",
"bugs": {
"url": "https://github.com/5t3ph/smolcss/issues"
},
"homepage": "https://smolcss.dev",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11tyrocks/eleventy-plugin-collection-schemas": "github:5t3ph/eleventy-plugin-collection-schemas",
"a11y-color-tokens": "^0.7.0",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"sass": "^1.69.0",
"terser": "^5.21.0"
}
}