-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 KB
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": "css-to-go",
"type": "module",
"version": "1.9.1",
"description": "A bit of global CSS to help shape up the looks of a plain HTML document. Has a dark mode and a light mode.",
"author": "P.Envall <petter.envall@gmail.com>",
"homepage": "https://npup.github.io/css-to-go",
"repository": {
"type": "git",
"url": "https://github.com/npup/css-to-go"
},
"config": {
"outDirProd": "docs",
"outDirLocal": "docs-local"
},
"keywords": [
"css",
"to go",
"simple",
"bare bones",
"global"
],
"main": "dist/css-to-go.min.css",
"files": [
"dist/*.css"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/npup/css-to-go/issues"
},
"devDependencies": {
"astro": "^2.2.3",
"postcss": "^8.4.21",
"postcss-nesting": "^11.2.2",
"prettier": "^2.8.7"
},
"scripts": {
"build": "astro build",
"build:local": "NODE_ENV=local astro build",
"clean": "rm -rf dist docs docs-local && mkdir dist",
"prebuild:local": "npm run clean",
"prebuild": "npm run clean",
"start": "astro dev",
"postbuild": "npm run copy:dist && npm run touch-nojekyll && echo '----- Done'",
"copy:dist": "cat docs/_astro/*.css > dist/css-to-go.min.css && npx prettier dist/css-to-go.min.css > dist/css-to-go.css",
"touch-nojekyll": "touch docs/.nojekyll",
"lint-fix": "echo 'not linting/fixing yet'"
}
}