A starter set of CSS files for building modular web components and layouts.
at main 53 lines 2.1 kB view raw
1{ 2 "name": "@taurean/stylebase", 3 "version": "0.11.0", 4 "description": "a starter set of CSS files", 5 "main": "dist/stylebase.min.css", 6 "style": "dist/stylebase.min.css", 7 "exports": { 8 ".": { 9 "style": "./dist/stylebase.min.css", 10 "default": "./dist/stylebase.min.css" 11 }, 12 "./css": "./dist/stylebase.min.css", 13 "./dist/*": "./dist/*" 14 }, 15 "files": [ 16 "dist/", 17 "README.md", 18 "LICENSE" 19 ], 20 "keywords": [ 21 "CSS", 22 "utility-classes", 23 "design-tokens", 24 "postcss", 25 "utility", 26 "reset" 27 ], 28 "author": "Taurean Bryant <later@taurean.work>", 29 "license": "SEE LICENSE IN LICENSE", 30 "repository": { 31 "type": "git", 32 "url": "git+https://github.com/taurean/stylebase.git" 33 }, 34 "homepage": "https://github.com/taurean/stylebase", 35 "bugs": { 36 "url": "https://github.com/taurean/stylebase/issues" 37 }, 38 "scripts": { 39 "build": "postcss stylebase/imports.css -o dist/stylebase.min.css", 40 "build:preview": "postcss stylebase/imports.css -o dist-preview/stylebase.css --no-map --env preview", 41 "dev": "browser-sync start --server --files 'stylebase/**/*.css,examples/*.html,index.html' --startPath '/'", 42 "release:patch": "git fetch gh && git pull gh main && npm version patch && npm run build && git add dist/ && git commit -m 'Build files' && git push gh main --tags && npm publish --access=public", 43 "release:minor": "git fetch gh && git pull gh main && npm version minor && npm run build && git add dist/ && git commit -m 'Build files' && git push gh main --tags && npm publish --access=public", 44 "release:major": "git fetch gh && git pull gh main && npm version major && npm run build && git add dist/ && git commit -m 'Build files' && git push gh main --tags && npm publish --access=public" 45 }, 46 "devDependencies": { 47 "browser-sync": "^3.0.4", 48 "cssnano": "^6.0.5", 49 "postcss": "^8.4.35", 50 "postcss-cli": "^11.0.0", 51 "postcss-import": "^16.0.0" 52 } 53}