@aegisjsproject/styles
Version:
Pre-made and reusable styles for `@aegisjsproject/core`
99 lines (98 loc) • 2.74 kB
JSON
{
"name": "@aegisjsproject/styles",
"version": "0.2.6",
"description": "Pre-made and reusable styles for `@aegisjsproject/core`",
"keywords": [
"aegis",
"css",
"theming",
"constructable-stylesheets",
"custom-elements",
"web-components",
"component-library"
],
"type": "module",
"main": "./styles.cjs",
"module": "./styles.js",
"unpkg": "./styles.js",
"exports": {
".": {
"import": "./styles.js",
"require": "./styles.cjs"
},
"./*.js": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.mjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.cjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*": {
"import": "./*.js",
"require": "./*.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"private": false,
"config": {
"serve": {
"domain": "localhost",
"path": "./",
"port": 8080
}
},
"scripts": {
"test": "npm run lint:js && npm run build",
"start": "http-server ${npm_package_config_serve_path} -c-1 --port ${npm_package_config_serve_port} --gzip true --brotli true -a ${npm_package_config_serve_domain} -o /test/",
"preversion": "npm test",
"prepare": "npm run build",
"lint:js": "eslint .",
"fix:js": "eslint . --fix",
"build": "npm run build:js && npm run build:css",
"clean": "rm -f ./*.cjs && rm -rf ./css/*.css",
"build:js": "npm run clean && rollup -c rollup.config.js",
"build:css": "node ./createSheets.js",
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
"version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
"version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AegisJSProject/styles.git"
},
"author": "Chris Zuber <admin@kernvalley.us>",
"license": "MIT",
"funding": [
{
"type": "librepay",
"url": "https://liberapay.com/shgysk8zer0"
},
{
"type": "github",
"url": "https://github.com/sponsors/shgysk8zer0"
}
],
"bugs": {
"url": "https://github.com/AegisJSProject/styles/issues"
},
"homepage": "https://github.com/AegisJSProject/styles#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@shgysk8zer0/eslint-config": "^1.0.1",
"eslint": "^9.10.0",
"http-server": "^14.1.1",
"rollup": "^4.9.6"
},
"dependencies": {
"@aegisjsproject/parsers": "^0.0.16"
}
}