-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1019 Bytes
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
{
"name": "minimal-css-utility",
"version": "1.2.0",
"description": "A SCSS utility library.",
"main": "dist/min.css",
"style": "dist/min.css",
"sass": "scss/style.scss",
"scripts": {
"clean": "rimraf dist docs/.vitepress/dist",
"build:theme": "rollup -c",
"docs:dev": "vitepress dev docs",
"docs:build": "pnpm run build:theme && vitepress build docs",
"docs:preview": "vitepress preview docs",
"format": "prettier --write .",
"build": "pnpm run clean && pnpm run build:theme && pnpm run docs:build"
},
"keywords": [
"scss",
"utility",
"css"
],
"author": "aghontpi",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"rollup": "^4.53.2",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.94.0",
"vitepress": "^1.6.4"
},
"files": [
"dist",
"scss"
],
"repository": {
"type": "git",
"url": "minimal-css-skeleton"
}
}